diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-11-16 05:32:58 +0100 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-11-16 05:33:21 +0100 |
commit | e7e8a87927899b69bfe9f8e38f26dac08ec37abe (patch) | |
tree | 1828c860254e477586616a6c44c92ca13b04d0d1 /src/input_common | |
parent | configure_input: Accommodate for the mouse input device engine (diff) | |
download | yuzu-e7e8a87927899b69bfe9f8e38f26dac08ec37abe.tar yuzu-e7e8a87927899b69bfe9f8e38f26dac08ec37abe.tar.gz yuzu-e7e8a87927899b69bfe9f8e38f26dac08ec37abe.tar.bz2 yuzu-e7e8a87927899b69bfe9f8e38f26dac08ec37abe.tar.lz yuzu-e7e8a87927899b69bfe9f8e38f26dac08ec37abe.tar.xz yuzu-e7e8a87927899b69bfe9f8e38f26dac08ec37abe.tar.zst yuzu-e7e8a87927899b69bfe9f8e38f26dac08ec37abe.zip |
Diffstat (limited to '')
-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 6024ed97a..8c48bb861 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); } }); } |