From 86326de6f6307448a74e5f84ad2cfe2ed2521252 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sun, 23 Feb 2014 10:01:47 +0100 Subject: [PATCH] WriteToHardware: Pass through the whole 0xCC008xxx area to GPFifo instead of only 0xCC008000. --- Source/Core/Core/HW/MemmapFunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/MemmapFunctions.cpp b/Source/Core/Core/HW/MemmapFunctions.cpp index 3a85a1ed70..39f73793de 100644 --- a/Source/Core/Core/HW/MemmapFunctions.cpp +++ b/Source/Core/Core/HW/MemmapFunctions.cpp @@ -147,7 +147,7 @@ inline void WriteToHardware(u32 em_address, const T data, u32 effective_address, { // First, let's check for FIFO writes, since they are probably the most common // reason we end up in this function: - if (em_address == 0xCC008000) + if ((em_address & 0xFFFFF000) == 0xCC008000) { switch (sizeof(T)) {