diff --git a/src/Config.cpp b/src/Config.cpp index dae2274a..19dc1def 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -12,7 +12,7 @@ void Config::resetToDefaults() { version = CONFIG_VERSION_CURRENT; -#ifdef PANDORA +#if defined(PANDORA) || defined(VC) video.fullscreen = 1; video.fullscreenWidth = video.windowedWidth = 800; #else @@ -42,7 +42,11 @@ void Config::resetToDefaults() generalEmulation.polygonOffsetUnits = 0.0f; #endif +#ifdef VC + frameBufferEmulation.enable = 0; +#else frameBufferEmulation.enable = 1; +#endif frameBufferEmulation.copyDepthToRDRAM = 0; frameBufferEmulation.copyFromRDRAM = 0; frameBufferEmulation.copyToRDRAM = 1;