1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

Revert "Do not use aux depth buffer as hwfbe texture."

This reverts commit bd10c7a788.
This commit is contained in:
Sergey Lipskiy 2017-11-16 18:32:05 +07:00
parent a8aa9833e4
commit ddec7aabe6

View File

@ -350,7 +350,7 @@ bool CheckForFrameBufferTexture(u32 _address, u32 _bytes)
bRes = false;
}
if (pBuffer->m_isDepthBuffer && (pBuffer->isAuxiliary() || (config.generalEmulation.hacks & hack_noDepthFrameBuffers) != 0)) {
if ((config.generalEmulation.hacks & hack_noDepthFrameBuffers) != 0 && pBuffer->m_isDepthBuffer) {
fbList.removeBuffer(pBuffer->m_startAddress);
bRes = false;
}