From c7678c3044165d9e15ae6a8e0d996f8b793f3c0f Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 3 Feb 2020 09:29:13 -0500 Subject: [PATCH] input_common/udp: Ensure that UDP is shut down within Shutdown() Previously the UDP backend would never actually get shut down. --- src/input_common/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/input_common/main.cpp b/src/input_common/main.cpp index 9e028da890..c98c848cf0 100644 --- a/src/input_common/main.cpp +++ b/src/input_common/main.cpp @@ -41,6 +41,7 @@ void Shutdown() { Input::UnregisterFactory("motion_emu"); motion_emu.reset(); sdl.reset(); + udp.reset(); } Keyboard* GetKeyboard() {