mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2025-03-09 18:11:53 +01:00
WUPSConfigItemButtonCombo: Fix string representation of additional wiimote buttons
This commit is contained in:
parent
e45d51318a
commit
5cbcc77b58
@ -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…
x
Reference in New Issue
Block a user