From 834d3fe336b066776c53b43b5682699622911acc 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 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() {
     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));