From 92eed472132a5d4589779bee5fc1d63db6023059 Mon Sep 17 00:00:00 2001 From: Scott Mansell Date: Mon, 14 Jul 2014 23:51:55 +1200 Subject: Fixed Frame dumping in VideoSoftware. Old code dumped the efb, which was no-longer relevant since the backend gained xfb support. New code dumps the colour texture which is about to be rendered to the screen so correctly reflects the bypassXFB option. --- Source/Core/VideoBackends/Software/EfbCopy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoBackends/Software/EfbCopy.cpp') diff --git a/Source/Core/VideoBackends/Software/EfbCopy.cpp b/Source/Core/VideoBackends/Software/EfbCopy.cpp index 77f141d60a..ab2d281bd4 100644 --- a/Source/Core/VideoBackends/Software/EfbCopy.cpp +++ b/Source/Core/VideoBackends/Software/EfbCopy.cpp @@ -44,7 +44,7 @@ namespace EfbCopy else { // Ask SWRenderer for the next color texture - u8 *colorTexture = SWRenderer::getColorTexture(); + u8 *colorTexture = SWRenderer::getNextColorTexture(); EfbInterface::BypassXFB(colorTexture, fbWidth, fbHeight, sourceRc, Gamma); -- cgit v1.2.3