summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
diff options
context:
space:
mode:
authoromegadox <omegadox@gmail.com>2009-06-22 07:40:28 +0000
committeromegadox <omegadox@gmail.com>2009-06-22 07:40:28 +0000
commit6de0cd1e4b8866c600938c0730a5614e08bc88d0 (patch)
tree557c6759fb31a3aab47388051c7fec1a4bce2be1 /Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
parentcfe3f77ccf3c55c813474726e1254b85569d1ce0 (diff)
They should be called SU Registers (Setup Unit/Rasterization). BP (Bypass) is really the name of the commands that are passed in.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3531 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 9342c3e7df..7ed39c477e 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 "BPMemory.h"
+#include "SUMemory.h"
#include "Fifo.h"
#include "DataReader.h"
@@ -267,7 +267,7 @@ static void Decode()
case GX_LOAD_BP_REG: //0x61
{
u32 cmd = DataReadU32();
- LoadBPReg(cmd);
+ LoadSUReg(cmd);
INCSTAT(stats.thisFrame.numBPLoads);
}
break;