mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00:00
Change INI keys containing "Wii Remote" back to "Wiimote"
4bd5674
changed "Wiimote" to "Wii Remote" in the GUI (intentionally) but also did the same change for two INI keys (seemingly unintentional, breaks backwards compatibility, and is inconsistent with the INI's filename). This commit reverts the INI keys but not the GUI strings. This commit uses the same approach ascbd539e
used for GameCube sticks (but I made sure to avoid the bug that56531a0
fixed).
This commit is contained in:
parent
f80f7b6f9c
commit
f5c82adc59
3 changed files with 14 additions and 6 deletions
|
@ -144,7 +144,8 @@ void PadSettingExtension::UpdateValue()
|
|||
|
||||
PadSettingCheckBox::PadSettingCheckBox(wxWindow* const parent,
|
||||
ControllerEmu::ControlGroup::BooleanSetting* const _setting)
|
||||
: PadSetting(new wxCheckBox(parent, wxID_ANY, wxGetTranslation(StrToWxStr(_setting->m_name)))),
|
||||
: PadSetting(
|
||||
new wxCheckBox(parent, wxID_ANY, wxGetTranslation(StrToWxStr(_setting->m_ui_name)))),
|
||||
setting(_setting)
|
||||
{
|
||||
UpdateGUI();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue