atan2 -> atan2f

git-svn-id: https://svn.eduke32.com/eduke32@7339 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2019-02-20 21:32:48 +00:00
parent a85b9e8259
commit 7b06ec9a6a

View file

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