From 80acd7ad6d2ce40e63f463443d9fbc5ae5b41521 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Mon, 3 Oct 2022 20:33:50 +0300 Subject: [PATCH] Fix RTG board Z3 config setup. --- gfxboard.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfxboard.cpp b/gfxboard.cpp index 6af23f78..24dd0467 100644 --- a/gfxboard.cpp +++ b/gfxboard.cpp @@ -4325,13 +4325,13 @@ bool gfxboard_init_memory (struct autoconfig_info *aci) } if (gb->board->configtype == 3) { type = 0x80; + flags |= 0x10; if (ext_size) { - type |= 0x20; + flags |= 0x20; type |= z3_flags; } else { type |= z2_flags; } - flags |= 0x10; } else { type = z2_flags | 0xc0; } -- 2.47.3