diff options
| author | Dolphin Bot <dolphin-emu-bot@users.noreply.github.com> | 2014-07-17 02:04:03 +0200 |
|---|---|---|
| committer | Dolphin Bot <dolphin-emu-bot@users.noreply.github.com> | 2014-07-17 02:04:03 +0200 |
| commit | 51dff5a74ecc0bafe965f360c898b381e8911c3a (patch) | |
| tree | b989c9af34aa6bb8d00535985c612431be06c4cd /Source/Core/VideoBackends/Software/EfbCopy.cpp | |
| parent | 8cf21cdcdb30d1587a03b6fbb131465f489d3d25 (diff) | |
| parent | 92eed472132a5d4589779bee5fc1d63db6023059 (diff) | |
Merge pull request #622 from phire/sw-fix-frame-dump
Fixed Frame dumping in VideoSoftware.
Diffstat (limited to 'Source/Core/VideoBackends/Software/EfbCopy.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/EfbCopy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
