mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-02 16:32:55 +00:00
Software: Fix function casing in SWRenderer
This commit is contained in:
parent
f9f46f33d6
commit
bcd10bfda6
4 changed files with 12 additions and 12 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue