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

rpi: disable framebuffer emulation

There is a black screen if frame buffer emulation is used: #605
This commit is contained in:
gizmo98 2015-10-08 21:06:13 +02:00 committed by Sergey Lipskiy
parent 6d2ce678d5
commit c92f5fc9d9

View File

@ -12,7 +12,7 @@ void Config::resetToDefaults()
{ {
version = CONFIG_VERSION_CURRENT; version = CONFIG_VERSION_CURRENT;
#ifdef PANDORA #if defined(PANDORA) || defined(VC)
video.fullscreen = 1; video.fullscreen = 1;
video.fullscreenWidth = video.windowedWidth = 800; video.fullscreenWidth = video.windowedWidth = 800;
#else #else
@ -42,7 +42,11 @@ void Config::resetToDefaults()
generalEmulation.polygonOffsetUnits = 0.0f; generalEmulation.polygonOffsetUnits = 0.0f;
#endif #endif
#ifdef VC
frameBufferEmulation.enable = 0;
#else
frameBufferEmulation.enable = 1; frameBufferEmulation.enable = 1;
#endif
frameBufferEmulation.copyDepthToRDRAM = 0; frameBufferEmulation.copyDepthToRDRAM = 0;
frameBufferEmulation.copyFromRDRAM = 0; frameBufferEmulation.copyFromRDRAM = 0;
frameBufferEmulation.copyToRDRAM = 1; frameBufferEmulation.copyToRDRAM = 1;