mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2026-07-06 20:04:23 -05:00
WUPSConfigItemButtonCombo: Fix string representation of additional wiimote buttons
This commit is contained in:
parent
3fb52d6f37
commit
abd9aba259
|
|
@ -65,6 +65,18 @@ namespace {
|
|||
if (value & WUPS_BUTTON_COMBO_BUTTON_RESERVED_BIT) {
|
||||
return "\ue01E";
|
||||
}
|
||||
if (value & WUPS_BUTTON_COMBO_BUTTON_1) {
|
||||
return "\uE047";
|
||||
}
|
||||
if (value & WUPS_BUTTON_COMBO_BUTTON_2) {
|
||||
return "\uE048";
|
||||
}
|
||||
if (value & WUPS_BUTTON_COMBO_BUTTON_C) {
|
||||
return "\uE04A";
|
||||
}
|
||||
if (value & WUPS_BUTTON_COMBO_BUTTON_Z) {
|
||||
return "\uE04B";
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user