summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/EfbCopy.cpp
diff options
context:
space:
mode:
authorTony Wasserka <neobrainx@gmail.com>2014-08-12 11:59:21 +0200
committerTony Wasserka <neobrainx@gmail.com>2014-08-12 11:59:21 +0200
commitd03e91962e9c7cb5a51693086df2ecaa50ec8c12 (patch)
tree77ebbdf72b21419a3238d6ebb33d6096b3efb946 /Source/Core/VideoBackends/Software/EfbCopy.cpp
parenta46151e14690bdba78c5d8844e2c369b2c7a64e2 (diff)
parentbcd10bfda657d6af2d43c22de20b1d924e482b98 (diff)
Merge pull request #779 from lioncash/software-cleanup
Small software backend cleanup.
Diffstat (limited to 'Source/Core/VideoBackends/Software/EfbCopy.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/EfbCopy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Software/EfbCopy.cpp b/Source/Core/VideoBackends/Software/EfbCopy.cpp
index 5c4e1e24c3..6a5e3a7abe 100644
--- a/Source/Core/VideoBackends/Software/EfbCopy.cpp
+++ b/Source/Core/VideoBackends/Software/EfbCopy.cpp
@@ -45,12 +45,12 @@ namespace EfbCopy
else
{
// Ask SWRenderer for the next color texture
- u8 *colorTexture = SWRenderer::getNextColorTexture();
+ u8 *colorTexture = SWRenderer::GetNextColorTexture();
EfbInterface::BypassXFB(colorTexture, fbWidth, fbHeight, sourceRc, Gamma);
// Tell SWRenderer we are now finished with it.
- SWRenderer::swapColorTexture();
+ SWRenderer::SwapColorTexture();
// FifoPlayer is broken and never calls BeginFrame/EndFrame.
// Hence, we manually force a swap now. This emulates the behavior