From a5c087f5de7eb7f6e0cce80d935ba41b48f5677b Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Sun, 17 Mar 2019 04:02:48 -0400
Subject: [PATCH] input_common/sdl_impl: Remove unused variable in SDLState
 constructor

---
 src/input_common/sdl/sdl_impl.cpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp
index de71e03fd1..9e8abfcca9 100644
--- a/src/input_common/sdl/sdl_impl.cpp
+++ b/src/input_common/sdl/sdl_impl.cpp
@@ -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));