From 33ad5a1e4d1c215cb7352d4a714201e6bea8aeb9 Mon Sep 17 00:00:00 2001 From: zeromus Date: Tue, 28 Feb 2017 02:43:43 +0000 Subject: [PATCH] fix tiny mistake in mapper 28 that made CHR register writes not take effect in some cases (fixes #779) --- trunk/src/boards/28.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/trunk/src/boards/28.cpp b/trunk/src/boards/28.cpp index c787b8c3..617b3aec 100644 --- a/trunk/src/boards/28.cpp +++ b/trunk/src/boards/28.cpp @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 FCEUX team + Copyright (C) 2012-2017 FCEUX team This file is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -141,6 +141,7 @@ static DECLFW(WritePRG) case 0x00: chr = value & 3; Mirror(value); + Sync(); break; case 0x01: prg = value & 15;