small fixes

This commit is contained in:
georgemoralis 2023-09-15 14:40:03 +03:00
parent 12f097d86b
commit 15089ae0b0
1 changed files with 3 additions and 4 deletions

View File

@ -20,7 +20,7 @@ static void CreateSdlWindow(WindowCtx* ctx) {
if (SDL_Init(SDL_INIT_VIDEO) < 0) { if (SDL_Init(SDL_INIT_VIDEO) < 0) {
printf("%s\n", SDL_GetError()); printf("%s\n", SDL_GetError());
std::_Exit(0); std::exit(0);
} }
ctx->m_window = SDL_CreateWindowWithPosition("shadps4", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, width, height, ctx->m_window = SDL_CreateWindowWithPosition("shadps4", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, width, height,
@ -30,7 +30,7 @@ static void CreateSdlWindow(WindowCtx* ctx) {
if (ctx->m_window == nullptr) { if (ctx->m_window == nullptr) {
printf("%s\n", SDL_GetError()); printf("%s\n", SDL_GetError());
std::_Exit(0); std::exit(0);
} }
SDL_SetWindowResizable(ctx->m_window, SDL_FALSE); // we don't support resizable atm SDL_SetWindowResizable(ctx->m_window, SDL_FALSE); // we don't support resizable atm
@ -55,7 +55,6 @@ void emuRun() {
SDL_Event event; SDL_Event event;
if (SDL_PollEvent(&event) != 0) { if (SDL_PollEvent(&event) != 0) {
printf("Event: 0x%04\n", event.type);
switch (event.type) { switch (event.type) {
case SDL_EVENT_QUIT: m_emu_needs_exit = true; break; case SDL_EVENT_QUIT: m_emu_needs_exit = true; break;
@ -80,6 +79,6 @@ void emuRun() {
HLE::Libs::Graphics::VideoOut::videoOutFlip(100000); // flip every 0.1 sec HLE::Libs::Graphics::VideoOut::videoOutFlip(100000); // flip every 0.1 sec
} }
} }
std::_Exit(0); std::exit(0);
} }
} // namespace Emulator } // namespace Emulator