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.
This commit is contained in:
Scott Mansell
2014-07-14 23:51:55 +12:00
parent 3ac4e9f171
commit 92eed47213
6 changed files with 26 additions and 33 deletions

View File

@ -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);