Merge pull request #229 from pjft/VRAM-Adjust

Setting VRAM default at 80 for the Pi
This commit is contained in:
Jools Wills 2017-08-30 05:35:31 +01:00 committed by GitHub
commit 9ecc1317ba

View file

@ -71,7 +71,11 @@ void Settings::setDefaults()
mIntMap["ScreenSaverTime"] = 5*60*1000; // 5 minutes
mIntMap["ScraperResizeWidth"] = 400;
mIntMap["ScraperResizeHeight"] = 0;
mIntMap["MaxVRAM"] = 100;
#ifdef _RPI_
mIntMap["MaxVRAM"] = 80;
#else
mIntMap["MaxVRAM"] = 100;
#endif
mStringMap["TransitionStyle"] = "fade";
mStringMap["ThemeSet"] = "";