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

Disable FBInfo for mupen64plus by default due to poor support of that feature by mupen64plus.

This commit is contained in:
Sergey Lipskiy 2016-03-02 11:28:14 +06:00
parent fcf7c051a2
commit 97add30099

View File

@ -55,9 +55,13 @@ void Config::resetToDefaults()
frameBufferEmulation.aspect = a43;
frameBufferEmulation.bufferSwapMode = bsOnVerticalInterrupt;
frameBufferEmulation.nativeResFactor = 0;
frameBufferEmulation.fbInfoDisabled = 0;
frameBufferEmulation.fbInfoReadColorChunk = 0;
frameBufferEmulation.fbInfoReadDepthChunk = 1;
#ifndef MUPENPLUSAPI
frameBufferEmulation.fbInfoDisabled = 0;
#else
frameBufferEmulation.fbInfoDisabled = 1;
#endif
textureFilter.txCacheSize = 100 * gc_uMegabyte;
textureFilter.txDump = 0;