From 97add3009925d2be375dbffc5840b0794ae9ea2e Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Wed, 2 Mar 2016 11:28:14 +0600 Subject: [PATCH] Disable FBInfo for mupen64plus by default due to poor support of that feature by mupen64plus. --- src/Config.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Config.cpp b/src/Config.cpp index d875061e..cc2aa668 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -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;