mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
atan2 -> atan2f
git-svn-id: https://svn.eduke32.com/eduke32@7339 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
a85b9e8259
commit
7b06ec9a6a
1 changed files with 1 additions and 1 deletions
|
@ -1085,7 +1085,7 @@ void polymer_drawrooms(int32_t daposx, int32_t daposy, int32_t daposz, fix16_t d
|
|||
gvisibility = ((float)globalvisibility)*FOGSCALE;
|
||||
|
||||
ang = fix16_to_float(daang) * (360.f/2048.f);
|
||||
horizang = -(float)atan2(fix16_to_float(dahoriz)-100.f, 128.f) * (180.f*(float)M_1_PI);
|
||||
horizang = -(float)atan2f(fix16_to_float(dahoriz) - 100.f, 128.f) * (180.f * (float)M_1_PI);
|
||||
tiltang = (gtang * 90.0f);
|
||||
|
||||
pos[0] = (float)daposy;
|
||||
|
|
Loading…
Reference in a new issue