Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #97 from delroth/mmio-gpfifo
WriteToHardware: Pass through the whole 0xCC008xxx area to GPFifo instead of only 0xCC008000.
  • Loading branch information
delroth committed Feb 23, 2014
2 parents 5313954 + 86326de commit 4a569c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/HW/MemmapFunctions.cpp
Expand Up @@ -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))
{
Expand Down

0 comments on commit 4a569c4

Please sign in to comment.