diff --git a/data/platform/dingux/gmenu2x.conf b/data/platform/dingux/gmenu2x.conf index a80129c..525dcd9 100644 --- a/data/platform/dingux/gmenu2x.conf +++ b/data/platform/dingux/gmenu2x.conf @@ -1,4 +1,4 @@ -videoBpp=16 -menuClock=200 +videoBpp=32 +menuClock=192 maxClock=408 backlightTimeout=60 diff --git a/src/gmenu2x.cpp b/src/gmenu2x.cpp index c6c2967..0f25f7f 100644 --- a/src/gmenu2x.cpp +++ b/src/gmenu2x.cpp @@ -702,13 +702,7 @@ void GMenu2X::readConfig(string conffile) { evalIntConf( &confInt["globalVolume"], 67, 0,100 ); evalIntConf( &confInt["backlightTimeout"], 15, 0,120 ); evalIntConf( &confInt["backlight"], 100, 5,100 ); - evalIntConf( &confInt["videoBpp"], -#ifdef PLATFORM_DINGUX - 32, // 16 would be better if the kernel could flip on vsync -#else - 32, -#endif - 16, 32 ); + evalIntConf( &confInt["videoBpp"], 32, 16, 32 ); if (confStr["tvoutEncoding"] != "PAL") confStr["tvoutEncoding"] = "NTSC"; resX = constrain( confInt["resolutionX"], 320,1920 );