Removed SDL_bool in favor of plain bool
We require stdbool.h in the build environment, so we might as well use the plain bool type. If your environment doesn't have stdbool.h, this simple replacement will suffice: typedef signed char bool;
This commit is contained in:
@@ -67,7 +67,7 @@ int main(int argc, char **argv)
|
||||
}
|
||||
|
||||
/* Print locales and languages */
|
||||
if (SDLTest_CommonInit(state) == SDL_FALSE) {
|
||||
if (SDLTest_CommonInit(state) == false) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user