Browse Source

Fixed warning C4389: '!=': signed/unsigned mismatch in SDL_blit.c

Sam Lantinga 1 year ago
parent
commit
dc1c27885e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/video/SDL_blit.h

+ 1 - 1
src/video/SDL_blit.h

@@ -79,7 +79,7 @@ typedef struct
     Uint32 src_format;
     Uint32 src_format;
     Uint32 dst_format;
     Uint32 dst_format;
     int flags;
     int flags;
-    int cpu;
+    unsigned int cpu;
     SDL_BlitFunc func;
     SDL_BlitFunc func;
 } SDL_BlitFuncEntry;
 } SDL_BlitFuncEntry;