summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/VideoState.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/VideoState.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/VideoState.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/VideoState.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/Src/VideoState.cpp b/Source/Core/VideoCommon/Src/VideoState.cpp
index 66f3611b9c..238be78ece 100644
--- a/Source/Core/VideoCommon/Src/VideoState.cpp
+++ b/Source/Core/VideoCommon/Src/VideoState.cpp
@@ -17,7 +17,7 @@
#include "VideoState.h"
-#include "BPMemory.h"
+#include "SUMemory.h"
#include "CPMemory.h"
#include "XFMemory.h"
#include "TextureDecoder.h"
@@ -26,7 +26,7 @@
static void DoState(PointerWrap &p)
{
// BP Memory
- p.Do(bpmem);
+ p.Do(sumem);
// CP Memory
p.DoArray(arraybases, 16);
p.DoArray(arraystrides, 16);