From 4bd993e13573f121e1629a067e419257111fa55f Mon Sep 17 00:00:00 2001 From: refraction Date: Wed, 17 Jun 2009 21:04:13 +0000 Subject: [PATCH] Nothing to see here, small missed thing :P git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1381 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/GS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/GS.cpp b/pcsx2/GS.cpp index 287a063dfc..cb7e28edf6 100644 --- a/pcsx2/GS.cpp +++ b/pcsx2/GS.cpp @@ -324,7 +324,7 @@ void gsCSRwrite(u32 value) static void IMRwrite(u32 value) { GSIMR = (value & 0x1f00)|0x6000; - CSRw |= (GSIMR >> 8) & 0x1f; + CSRw |= ~(GSIMR >> 8) & 0x1f; // don't update mtgs mem }