summaryrefslogtreecommitdiff
path: root/Xcode-iOS
diff options
context:
space:
mode:
authorPhilipp Wiesemann <philipp.wiesemann@arcor.de>2017-05-25 23:01:59 +0200
committerPhilipp Wiesemann <philipp.wiesemann@arcor.de>2017-05-25 23:01:59 +0200
commit2c66e2590c34da059bcc59d1eab0bb443c31c09f (patch)
treeb197d99bb167939e7ba93963db877fe613310324 /Xcode-iOS
parentc1a9b5c41fd548dbc470d7a88d03ba49088be8da (diff)
ios: Fixed math include in demos.
Diffstat (limited to 'Xcode-iOS')
-rw-r--r--Xcode-iOS/Demos/src/accelerometer.c2
-rw-r--r--Xcode-iOS/Demos/src/touch.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Xcode-iOS/Demos/src/accelerometer.c b/Xcode-iOS/Demos/src/accelerometer.c
index e15de3ed4e..2cc0123c29 100644
--- a/Xcode-iOS/Demos/src/accelerometer.c
+++ b/Xcode-iOS/Demos/src/accelerometer.c
@@ -5,7 +5,7 @@
*/
#include "SDL.h"
-#include "math.h"
+#include <math.h>
#include "common.h"
#define DAMPING 0.5f; /* after bouncing off a wall, damping coefficient determines final speed */
diff --git a/Xcode-iOS/Demos/src/touch.c b/Xcode-iOS/Demos/src/touch.c
index 32e6cea112..470b9d1bdc 100644
--- a/Xcode-iOS/Demos/src/touch.c
+++ b/Xcode-iOS/Demos/src/touch.c
@@ -5,7 +5,7 @@
*/
#include "SDL.h"
-#include "math.h"
+#include <math.h>
#include "common.h"
#define BRUSH_SIZE 32 /* width and height of the brush */