Fix monochrome mode config setting not honored

This commit is contained in:
David Kuder 2023-04-22 03:48:43 -04:00
parent 88a60d11b6
commit 8b289bd3fb
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ bool DELAYED_COPY_CODE(parse_config)(uint32_t address) {
romx_changed = 1;
break;
case CFGTOKEN_MONO_00:
mono_palette = (config[i] >> 16) & 0xF;
mono_palette = (config[i] >> 20) & 0xF;
break;
case CFGTOKEN_TBCOLOR:
terminal_tbcolor = (config[i] >> 16) & 0xFF;