From 1b3a8703881dbb5c7b14e7fddc82608921a601a0 Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 29 Apr 2021 07:37:05 +0200 Subject: [PATCH] Forgotten changes to the MCA PS/2 machines. --- src/machine/m_ps2_mca.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/machine/m_ps2_mca.c b/src/machine/m_ps2_mca.c index 2c1398402..ded6159ef 100644 --- a/src/machine/m_ps2_mca.c +++ b/src/machine/m_ps2_mca.c @@ -1081,9 +1081,9 @@ static void mem_encoding_write_cached(uint16_t addr, uint8_t val, void *p) #if 1 // FIXME: Look into this!!! if (val & 0x01) - ram_mid_mapping.flags |= MEM_MAPPING_ROM; + ram_mid_mapping.flags |= MEM_MAPPING_ROM_WS; else - ram_mid_mapping.flags &= ~MEM_MAPPING_ROM; + ram_mid_mapping.flags &= ~MEM_MAPPING_ROM_WS; #endif break; }