summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/DebugUtil.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-08-10 22:01:42 -0400
committerLioncash <mathew1800@gmail.com>2014-08-10 22:28:18 -0400
commitbcd10bfda657d6af2d43c22de20b1d924e482b98 (patch)
tree48e21352ca14869947a3cc74996b871e0949a31a /Source/Core/VideoBackends/Software/DebugUtil.cpp
parentf9f46f33d6a12f5e57e0c0a4b6d66ed3c22952e1 (diff)
Software: Fix function casing in SWRenderer
Diffstat (limited to 'Source/Core/VideoBackends/Software/DebugUtil.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/DebugUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/DebugUtil.cpp b/Source/Core/VideoBackends/Software/DebugUtil.cpp
index 0a37d50e84..1d1dfe0c1a 100644
--- a/Source/Core/VideoBackends/Software/DebugUtil.cpp
+++ b/Source/Core/VideoBackends/Software/DebugUtil.cpp
@@ -159,7 +159,7 @@ static void DumpEfb(const std::string& filename)
static void DumpColorTexture(const std::string& filename, u32 width, u32 height)
{
- TextureToPng(SWRenderer::getCurrentColorTexture(), width * 4, filename, width, height, true);
+ TextureToPng(SWRenderer::GetCurrentColorTexture(), width * 4, filename, width, height, true);
}
void DrawObjectBuffer(s16 x, s16 y, u8 *color, int bufferBase, int subBuffer, const char *name)