Properly show empty button combos in the ButtonComboConfigItem

This commit is contained in:
Maschell 2026-05-03 12:37:34 +02:00
parent bf017209ae
commit 814a2f958f

View File

@ -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++) {