diff options
| author | 2019-03-17 04:02:48 -0400 | |
|---|---|---|
| committer | 2019-03-17 04:02:48 -0400 | |
| commit | 834d3fe336b066776c53b43b5682699622911acc (patch) | |
| tree | 83ba96aacbb16e757498b271bcf6fd8d735d5349 /src/input_common/sdl/sdl_impl.cpp | |
| parent | Merge pull request #2241 from lioncash/compile-flags (diff) | |
| download | yuzu-834d3fe336b066776c53b43b5682699622911acc.tar.gz yuzu-834d3fe336b066776c53b43b5682699622911acc.tar.xz yuzu-834d3fe336b066776c53b43b5682699622911acc.zip | |
input_common/sdl_impl: Remove unused variable in SDLState constructor
Diffstat (limited to 'src/input_common/sdl/sdl_impl.cpp')
| -rw-r--r-- | src/input_common/sdl/sdl_impl.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp index 934339d3b..c223f5843 100644 --- a/src/input_common/sdl/sdl_impl.cpp +++ b/src/input_common/sdl/sdl_impl.cpp | |||
| @@ -477,7 +477,6 @@ SDLState::SDLState() { | |||
| 477 | if (start_thread) { | 477 | if (start_thread) { |
| 478 | poll_thread = std::thread([&] { | 478 | poll_thread = std::thread([&] { |
| 479 | using namespace std::chrono_literals; | 479 | using namespace std::chrono_literals; |
| 480 | SDL_Event event; | ||
| 481 | while (initialized) { | 480 | while (initialized) { |
| 482 | SDL_PumpEvents(); | 481 | SDL_PumpEvents(); |
| 483 | std::this_thread::sleep_for(std::chrono::duration(10ms)); | 482 | std::this_thread::sleep_for(std::chrono::duration(10ms)); |