mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Cast results back to a float
This suppresses a compiler 'type conversion' warning.
This commit is contained in:
parent
53c693f6e1
commit
4cff696133
@ -63,7 +63,7 @@ float FastLog2(float i)
|
||||
float LogBodge = 0.346607f;
|
||||
float x;
|
||||
float y;
|
||||
x = *(int*)&i;
|
||||
x = float(*(int*)&i);
|
||||
x *= OOshift23; //1/pow(2,23);
|
||||
x = x - 127;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user