2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

sdl_impl: Pump SDL Events at 1000 Hz

This commit is contained in:
Morph 2020-11-15 23:32:58 -05:00
parent b254d528bc
commit e7e8a87927

View file

@ -698,7 +698,7 @@ SDLState::SDLState() {
using namespace std::chrono_literals; using namespace std::chrono_literals;
while (initialized) { while (initialized) {
SDL_PumpEvents(); SDL_PumpEvents();
std::this_thread::sleep_for(5ms); std::this_thread::sleep_for(1ms);
} }
}); });
} }