1
0
mirror of https://github.com/abakh/nbsdgames.git synced 2024-06-08 17:20:41 +00:00

one more typo in round()

This commit is contained in:
Jens Staal 2020-06-14 07:30:44 +02:00
parent 6b83ef7b1b
commit 1a97f58c09

View File

@ -34,7 +34,7 @@ int round(float x)
z = y;
if(x<0)
if(x-y < -0.5)
z = int(x -0.5);
z = (int)(x -0.5);
else
z = y;
return z;