Browse Source

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

Sam Lantinga 2 năm trước cách đây
mục cha
commit
dc1c27885e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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 dst_format;
     int flags;
-    int cpu;
+    unsigned int cpu;
     SDL_BlitFunc func;
 } SDL_BlitFuncEntry;