1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-04 10:03:36 +00:00

Fix FrameBuffer_CopyDepthBuffer: return false for GLES2 case.

This commit is contained in:
Sergey Lipskiy 2015-04-23 17:25:21 +06:00
parent 12102146f1
commit 01807a0499

View File

@ -1147,6 +1147,8 @@ bool DepthBufferToRDRAM::CopyToRDRAM( u32 _address) {
bool FrameBuffer_CopyDepthBuffer( u32 address ) {
#ifndef GLES2
return g_dbToRDRAM.CopyToRDRAM(address);
#else
return false;
#endif
}