diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-11-15 23:32:58 -0500 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-11-15 23:33:21 -0500 |
commit | e7e8a87927899b69bfe9f8e38f26dac08ec37abe (patch) | |
tree | 1828c860254e477586616a6c44c92ca13b04d0d1 /src/input_common/sdl/sdl_impl.cpp | |
parent | b254d528bcdd8d826c87ef720b2c247a08cc5049 (diff) |
sdl_impl: Pump SDL Events at 1000 Hz
Diffstat (limited to 'src/input_common/sdl/sdl_impl.cpp')
-rw-r--r-- | src/input_common/sdl/sdl_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp index 6024ed97a8..8c48bb861c 100644 --- a/src/input_common/sdl/sdl_impl.cpp +++ b/src/input_common/sdl/sdl_impl.cpp @@ -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); } }); } |