Cast results back to a float

This suppresses a compiler 'type conversion' warning.
This commit is contained in:
Kawe Mazidjatari 2023-04-03 11:22:55 +02:00
parent 53c693f6e1
commit 4cff696133

View File

@ -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;