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

Call copyRdram() for cfb buffer to have data for validity check.

Fixed NBA Courtside 2: wrong intro - regression #1956
This commit is contained in:
Sergey Lipskiy 2018-12-09 16:24:35 +07:00
parent 8cd1605933
commit 29575624b9

View File

@ -794,6 +794,8 @@ void FrameBufferList::saveBuffer(u32 _address, u16 _format, u16 _size, u16 _widt
buffer.init(_address, _format, _size, _width, _cfb);
m_pCurrent = &buffer;
RDRAMtoColorBuffer::get().copyFromRDRAM(m_pCurrent);
if (_cfb)
m_pCurrent->copyRdram();
}
if (_address == gDP.depthImageAddress)