Browse Source

Fix compilation

Sylvain 2 years ago
parent
commit
ab0c5cf07d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cmake/test/main_gui.c

+ 1 - 1
cmake/test/main_gui.c

@@ -20,7 +20,7 @@ int main(int argc, char *argv[]) {
         return 1;
     }
     screenSurface = SDL_GetWindowSurface(window);
-    SDL_FillRect(screenSurface, NULL, SDL_MapRGB(screenSurface->format, 0xff, 0xff, 0xff));
+    SDL_FillSurfaceRect(screenSurface, NULL, SDL_MapRGB(screenSurface->format, 0xff, 0xff, 0xff));
     SDL_UpdateWindowSurface(window);
     SDL_Delay(100);
     SDL_DestroyWindow(window);