sdl_impl: Pump SDL Events at 1000 Hz

merge-requests/60/head
Morph 2020-11-15 23:32:58 +07:00
parent b254d528bc
commit e7e8a87927
1 changed files with 1 additions and 1 deletions

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