Commit 7ea6ef0d authored by Sam Lantinga's avatar Sam Lantinga

Fixed compile warning with latest mingw32 compiler

parent 5f387821
...@@ -39,7 +39,7 @@ struct SDL_semaphore ...@@ -39,7 +39,7 @@ struct SDL_semaphore
#else #else
HANDLE id; HANDLE id;
#endif #endif
Uint32 volatile count; LONG volatile count;
}; };
...@@ -143,7 +143,7 @@ SDL_SemValue(SDL_sem * sem) ...@@ -143,7 +143,7 @@ SDL_SemValue(SDL_sem * sem)
SDL_SetError("Passed a NULL sem"); SDL_SetError("Passed a NULL sem");
return 0; return 0;
} }
return sem->count; return (Uint32)sem->count;
} }
int int
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment