From f50ed8752c7ade1af13d32f286fe7980c5c9ee59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Hamil?= Date: Sat, 7 Feb 2026 16:27:03 +0300 Subject: [PATCH] Wiimote to GunCon3: removed bogus mapping remnant --- rpcs3/Emu/Io/WiimoteManager.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/rpcs3/Emu/Io/WiimoteManager.cpp b/rpcs3/Emu/Io/WiimoteManager.cpp index 47893757fa..adb1afac74 100644 --- a/rpcs3/Emu/Io/WiimoteManager.cpp +++ b/rpcs3/Emu/Io/WiimoteManager.cpp @@ -219,13 +219,7 @@ wiimote_manager::wiimote_manager() if (!s_instance) s_instance = this; - // Set default mapping explicitly to match user preference: C1=Plus, A3=Left - // (Struct default constructor might have different values if I didn't edit header defaults) - // Let's force it here before loading config. - m_mapping.c1 = wiimote_button::Plus; - m_mapping.a3 = wiimote_button::Left; - // Defaults for others from struct: - // a1=A, a2=Minus, etc. + load_config(); }