From 175e08e54ce26e964900ffc801d5678f85ec7640 Mon Sep 17 00:00:00 2001 From: David Kuder Date: Tue, 2 May 2023 19:28:42 -0400 Subject: [PATCH] Default Video 7 shift register to being set (140x192 DHGR) --- common/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/config.c b/common/config.c index 49f7ba4..a85dc07 100644 --- a/common/config.c +++ b/common/config.c @@ -112,7 +112,7 @@ bool DELAYED_COPY_CODE(parse_config)(uint32_t address) { break; case CFGTOKEN_VIDEO7: if((config[i] >> 16) & 1) { - internal_flags |= IFLAGS_VIDEO7; + internal_flags |= IFLAGS_VIDEO7 | IFLAGS_V7_MODE3; } else { internal_flags &= ~IFLAGS_VIDEO7; } @@ -201,7 +201,7 @@ void DELAYED_COPY_CODE(default_config)() { current_machine = MACHINE_AUTO; internal_flags |= (IFLAGS_IIE_REGS | IFLAGS_IIGS_REGS); #endif - internal_flags |= IFLAGS_VIDEO7; + internal_flags |= IFLAGS_VIDEO7 | IFLAGS_V7_MODE3; } int DELAYED_COPY_CODE(make_config)(uint32_t rev) {