Fixes for testdialog.c

main
Semphris 2024-04-09 16:34:12 -04:00 committed by Sam Lantinga
parent 29d43272e2
commit 0caa2828d5
1 changed files with 2 additions and 2 deletions

View File

@ -70,8 +70,7 @@ int main(int argc, char *argv[]) {
int consumed; int consumed;
consumed = SDLTest_CommonArg(state, i); consumed = SDLTest_CommonArg(state, i);
if (!consumed) {
}
if (consumed <= 0) { if (consumed <= 0) {
static const char *options[] = { NULL }; static const char *options[] = { NULL };
SDLTest_CommonLogUsage(state, argv[0], options); SDLTest_CommonLogUsage(state, argv[0], options);
@ -87,6 +86,7 @@ int main(int argc, char *argv[]) {
} }
if (SDL_CreateWindowAndRenderer(640, 480, 0, &w, &r) < 0) { if (SDL_CreateWindowAndRenderer(640, 480, 0, &w, &r) < 0) {
SDL_Log("Failed to create window and/or renderer: %s\n", SDL_GetError()); SDL_Log("Failed to create window and/or renderer: %s\n", SDL_GetError());
SDL_Quit();
return 1; return 1;
} }