[client,sdl] fix return by abort event

This commit is contained in:
akallabeth
2025-03-27 12:38:57 +01:00
parent a7d2caa424
commit cfa63ad2f0
2 changed files with 2 additions and 2 deletions

View File

@@ -820,7 +820,7 @@ static int sdl_run(SdlContext* sdl)
case WAIT_OBJECT_0:
break;
default:
return -1;
return 0;
}
SDL_Init(SDL_INIT_VIDEO);

View File

@@ -824,7 +824,7 @@ static int sdl_run(SdlContext* sdl)
case WAIT_OBJECT_0:
break;
default:
return -1;
return 0;
}
SDL_Init(SDL_INIT_VIDEO);