From 18caac989bdf9a8dc8be9f6b205b85f8c055e4e1 Mon Sep 17 00:00:00 2001 From: rogerman Date: Sat, 10 Oct 2015 02:19:51 +0000 Subject: [PATCH] =?UTF-8?q?MMU:=20-=20Fix=20writing=20to=20the=20sub=20eng?= =?UTF-8?q?ine=E2=80=99s=20MASTER=5FBRIGHT=20register.=20Fixes=20the=20tou?= =?UTF-8?q?ch=20screen=20display=20output=20for=20=E2=80=9CPirates=20of=20?= =?UTF-8?q?the=20Caribbean:=20At=20World=E2=80=99s=20End=E2=80=9D.=20(Regr?= =?UTF-8?q?ession=20from=20r5261.)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- desmume/src/MMU.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/MMU.cpp b/desmume/src/MMU.cpp index 2a887edd7..bff446247 100644 --- a/desmume/src/MMU.cpp +++ b/desmume/src/MMU.cpp @@ -4550,7 +4550,7 @@ void FASTCALL _MMU_ARM9_write32(u32 adr, u32 val) return; case REG_DISPB_MASTERBRIGHT: - T1WriteLong(MMU.ARM9_REG, 0x006C, val); + T1WriteLong(MMU.ARM9_REG, 0x106C, val); subEngine->ParseReg_MASTER_BRIGHT(); return;