mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-06-03 10:27:40 +00:00
Fixed signed/unsigned warnings with Visual Studio when comparing SDL_bool with boolean expressions
This commit is contained in:
parent
d71454da17
commit
61db102da9
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ char *alloca();
|
||||||
*/
|
*/
|
||||||
#define SDL_FALSE 0
|
#define SDL_FALSE 0
|
||||||
#define SDL_TRUE 1
|
#define SDL_TRUE 1
|
||||||
typedef unsigned int SDL_bool;
|
typedef int SDL_bool;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A signed 8-bit integer type.
|
* A signed 8-bit integer type.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue