You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-arcade/insaneodyssey/files/insaneodyssey-000311-gcc6.p...

22 lines
388 B

Bug: https://bugs.gentoo.org/600894
--- a/io.cpp
+++ b/io.cpp
@@ -22,6 +22,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
+#include <cmath>
#include <SDL/SDL.h>
@@ -894,7 +895,7 @@
else
{
if ( jumping )
- yspeed = -jumpheight - abs(xspeed)/4;
+ yspeed = -jumpheight - std::abs(xspeed)/4;
}
short TempX = (x + width/2) / TILESIZE;