Ver Fonte

iOS: Fixed compiling template on C89 compilers.

Philipp Wiesemann há 8 anos atrás
pai
commit
6bd87635ee
1 ficheiros alterados com 3 adições e 1 exclusões
  1. 3 1
      Xcode-iOS/Template/SDL iOS Application/main.c

+ 3 - 1
Xcode-iOS/Template/SDL iOS Application/main.c

@@ -5,6 +5,8 @@
  */
 
 #include "SDL.h"
+#include <stdio.h>
+#include <stdlib.h>
 #include <time.h>
 
 #define SCREEN_WIDTH 320
@@ -20,6 +22,7 @@ void
 render(SDL_Renderer *renderer)
 {
 
+    SDL_Rect rect;
     Uint8 r, g, b;
 
     /* Clear the screen */
@@ -27,7 +30,6 @@ render(SDL_Renderer *renderer)
     SDL_RenderClear(renderer);
 
     /*  Come up with a random rectangle */
-    SDL_Rect rect;
     rect.w = randomInt(64, 128);
     rect.h = randomInt(64, 128);
     rect.x = randomInt(0, SCREEN_WIDTH);