Skip to content

Commit

Permalink
ios: Fixed math include in demos.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed May 25, 2017
1 parent 1e13d93 commit b84fe2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Xcode-iOS/Demos/src/accelerometer.c
Expand Up @@ -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 */
Expand Down
2 changes: 1 addition & 1 deletion Xcode-iOS/Demos/src/touch.c
Expand Up @@ -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 */
Expand Down

0 comments on commit b84fe2c

Please sign in to comment.