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

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

Previously the UDP backend would never actually get shut down.
This commit is contained in:
Lioncash 2020-02-03 09:29:13 -05:00
parent 83f8090273
commit c7678c3044

View file

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