mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2026-05-07 21:49:04 -05:00
Properly show empty button combos in the ButtonComboConfigItem
This commit is contained in:
parent
bf017209ae
commit
814a2f958f
|
|
@ -81,6 +81,9 @@ namespace {
|
|||
}
|
||||
|
||||
std::string getComboAsString(const uint32_t value) {
|
||||
if (value == 0) {
|
||||
return "Not Set";
|
||||
}
|
||||
char comboString[60] = {};
|
||||
|
||||
for (uint32_t i = 0; i < 32; i++) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user