Procházet zdrojové kódy

testcustomcursor: fix Wswitch warning by casting the arg to an int

Anonymous Maarten před 2 roky
rodič
revize
a905db9d65
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      test/testcustomcursor.c

+ 1 - 1
test/testcustomcursor.c

@@ -169,7 +169,7 @@ loop()
 
                 SDL_SetCursor(cursors[current_cursor]);
 
-                switch (cursor_types[current_cursor]) {
+                switch ((int)cursor_types[current_cursor]) {
                     case (SDL_SystemCursor)-1:        SDL_Log("Custom cursor"); break;
                     case SDL_SYSTEM_CURSOR_ARROW:     SDL_Log("Arrow"); break;
                     case SDL_SYSTEM_CURSOR_IBEAM:     SDL_Log("I-beam"); break;