summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/VertexLoader.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/VertexLoader.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/VertexLoader.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/VertexLoader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/Src/VertexLoader.cpp b/Source/Core/VideoCommon/Src/VertexLoader.cpp
index ab1b42dee4..a001e4530d 100644
--- a/Source/Core/VideoCommon/Src/VertexLoader.cpp
+++ b/Source/Core/VideoCommon/Src/VertexLoader.cpp
@@ -29,7 +29,7 @@
#include "Statistics.h"
#include "VertexLoaderManager.h"
#include "VertexLoader.h"
-#include "BPMemory.h"
+#include "SUMemory.h"
#include "DataReader.h"
#include "NativeVertexWriter.h"
@@ -539,7 +539,7 @@ void VertexLoader::RunVertices(int vtx_attr_group, int primitive, int count)
}
g_nativeVertexFmt = m_NativeFmt;
- if (bpmem.genMode.cullmode == 3 && primitive < 5)
+ if (sumem.genMode.cullmode == 3 && primitive < 5)
{
// if cull mode is none, ignore triangles and quads
DataSkip(count * m_VertexSize);