Default Video 7 shift register to being set (140x192 DHGR)

This commit is contained in:
David Kuder 2023-05-02 19:28:42 -04:00
parent 9469594990
commit 175e08e54c
1 changed files with 2 additions and 2 deletions

View File

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