diff options
author | Lioncash <mathew1800@gmail.com> | 2019-03-17 08:19:55 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-03-17 09:02:52 +0100 |
commit | d74aa13bd35e43652b7f8759639a65230971cadc (patch) | |
tree | 2a0b1bc9ac2e8a579b6d567e6c109553f4a3a5fb | |
parent | input_common/sdl_impl: Remove unused variable in SDLState constructor (diff) | |
download | yuzu-d74aa13bd35e43652b7f8759639a65230971cadc.tar yuzu-d74aa13bd35e43652b7f8759639a65230971cadc.tar.gz yuzu-d74aa13bd35e43652b7f8759639a65230971cadc.tar.bz2 yuzu-d74aa13bd35e43652b7f8759639a65230971cadc.tar.lz yuzu-d74aa13bd35e43652b7f8759639a65230971cadc.tar.xz yuzu-d74aa13bd35e43652b7f8759639a65230971cadc.tar.zst yuzu-d74aa13bd35e43652b7f8759639a65230971cadc.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 c223f5843..991ef9683 100644 --- a/src/input_common/sdl/sdl_impl.cpp +++ b/src/input_common/sdl/sdl_impl.cpp @@ -479,7 +479,7 @@ SDLState::SDLState() { using namespace std::chrono_literals; while (initialized) { SDL_PumpEvents(); - std::this_thread::sleep_for(std::chrono::duration(10ms)); + std::this_thread::sleep_for(10ms); } }); } |