Significant refactoring with separate Console Handler.

This commit is contained in:
2026-01-24 15:19:25 -06:00
parent d07402d809
commit 2ba02318db
6 changed files with 307 additions and 220 deletions

View File

@@ -144,7 +144,7 @@ const char *NotTunedTunedText(uint8_t val) {
const char *InputModeText(uint8_t val) {
static const char *buf[] = {
"Auto", "DTS", "Analog", "Analog Only", "AAC", "Unk"
"Auto", "unk", "DTS", "unk", "Analog", "Analog Only", "AAC", "Unk"
};
if (val >= sizeof(buf) / sizeof(buf[0]))
val = sizeof(buf) / sizeof(buf[0]) - 1;