2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

input_common/sdl_impl: Remove unused variable in SDLState constructor

This commit is contained in:
Lioncash 2019-03-17 04:02:48 -04:00
parent 29c242721a
commit 834d3fe336

View file

@ -477,7 +477,6 @@ SDLState::SDLState() {
if (start_thread) {
poll_thread = std::thread([&] {
using namespace std::chrono_literals;
SDL_Event event;
while (initialized) {
SDL_PumpEvents();
std::this_thread::sleep_for(std::chrono::duration(10ms));