summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2009-06-22 09:31:30 +0000
committernakeee <nakeee@gmail.com>2009-06-22 09:31:30 +0000
commit6b2855de5e8215621a83830b3232c2f910048ce0 (patch)
tree98407c00f4640dd409cb5bd06b4b33981c8b4e09 /Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
parent5bcf69cbd672f26a3069b689fd70318089d2a90c (diff)
revert last 2 commits
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3533 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon/Src/OpcodeDecoding.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/OpcodeDecoding.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp b/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
index 7ed39c477e..9342c3e7df 100644
--- a/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
+++ b/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
@@ -35,7 +35,7 @@
#include "XFMemory.h"
#include "CPMemory.h"
-#include "SUMemory.h"
+#include "BPMemory.h"
#include "Fifo.h"
#include "DataReader.h"
@@ -267,7 +267,7 @@ static void Decode()
case GX_LOAD_BP_REG: //0x61
{
u32 cmd = DataReadU32();
- LoadSUReg(cmd);
+ LoadBPReg(cmd);
INCSTAT(stats.thisFrame.numBPLoads);
}
break;