Revert "Fixed signed/unsigned warnings with Visual Studio when comparing SDL_bool with boolean expressions"

This reverts commit 61db102da9.

This causes the build to fail:
SDL_waylandwindow.c:1876:45: error: implicit truncation from 'int' to a one-bit wide bit-field changes value from 1 to -1 [-Werror,-Wsingle-bit-bitfield-constant-conversion]
            wind->fullscreen_was_positioned = SDL_TRUE;
This commit is contained in:
Sam Lantinga 2023-12-29 17:11:54 -08:00
parent 8f94102b04
commit 7681695875
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ char *alloca();
*/
#define SDL_FALSE 0
#define SDL_TRUE 1
typedef int SDL_bool;
typedef unsigned int SDL_bool;
/**
* A signed 8-bit integer type.