Browse Source

input_common/udp: Ensure that UDP is shut down within Shutdown()

Previously the UDP backend would never actually get shut down.
nce_cpp
Lioncash 6 years ago
parent
commit
ba28438e61
  1. 1
      src/input_common/main.cpp

1
src/input_common/main.cpp

@ -41,6 +41,7 @@ void Shutdown() {
Input::UnregisterFactory<Input::MotionDevice>("motion_emu");
motion_emu.reset();
sdl.reset();
udp.reset();
}
Keyboard* GetKeyboard() {

Loading…
Cancel
Save