Fix a few typos.

This commit is contained in:
Scott Mansell 2013-11-23 20:16:30 +13:00
parent 01da9c4b71
commit 999e085411
1 changed files with 2 additions and 2 deletions

View File

@ -39,9 +39,9 @@ namespace EfbCopy
EfbInterface::CopyToXFB(xfb_in_ram, fbWidth, fbHeight, sourceRc, Gamma);
} else {
s8 *colorTexture = SWRenderer::getColorTexture(); // Ask SWRenderer for the next colour texture
u8 *colorTexture = SWRenderer::getColorTexture(); // Ask SWRenderer for the next color texture
EfbInterface::BypassXFB(colourTexture, fbWidth, fbHeight, sourceRc, Gamma);
EfbInterface::BypassXFB(colorTexture, fbWidth, fbHeight, sourceRc, Gamma);
SWRenderer::swapColorTexture(); // Tell SWRenderer we are now finished with it.
}