mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-03 13:31:18 +12:00
Latte: rendertarget is a bitmask (#942)
This commit is contained in:
parent
85aa4f095b
commit
d8b9a74d86
2 changed files with 6 additions and 2 deletions
|
@ -1048,9 +1048,9 @@ void LatteRenderTarget_itHLECopyColorBufferToScanBuffer(MPTR colorBufferPtr, uin
|
|||
}
|
||||
}
|
||||
|
||||
if (renderTarget == 4 && g_renderer->IsPadWindowActive())
|
||||
if ((renderTarget & RENDER_TARGET_DRC) && g_renderer->IsPadWindowActive())
|
||||
LatteRenderTarget_copyToBackbuffer(texView, true);
|
||||
if ((renderTarget == 1 && !showDRC) || (renderTarget == 4 && showDRC))
|
||||
if (((renderTarget & RENDER_TARGET_TV) && !showDRC) || ((renderTarget & RENDER_TARGET_DRC) && showDRC))
|
||||
LatteRenderTarget_copyToBackbuffer(texView, false);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue