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

This commit is contained in:
Sam Lantinga
2023-12-29 09:26:36 -08:00
parent e813c72b3c
commit dc1c27885e

View File

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