summaryrefslogtreecommitdiffstats
path: root/src/input_common/sdl
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-17 08:19:55 +0100
committerLioncash <mathew1800@gmail.com>2019-03-17 09:02:52 +0100
commitd74aa13bd35e43652b7f8759639a65230971cadc (patch)
tree2a0b1bc9ac2e8a579b6d567e6c109553f4a3a5fb /src/input_common/sdl
parentinput_common/sdl_impl: Remove unused variable in SDLState constructor (diff)
downloadyuzu-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 'src/input_common/sdl')
-rw-r--r--src/input_common/sdl/sdl_impl.cpp2
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);
}
});
}