mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 07:05:39 +00:00
Setting VRAM default at 80 for the Pi
More often than not users are running into glGetErrors 505 (running out of video memory) when using heavy themes with the default 100 VRAM setting. The advice of setting it to 80 is often the solution. Until we have a proper/better GPU management solution, this is probably a better default.
This commit is contained in:
parent
6b217f3751
commit
b6a1234168
|
@ -71,7 +71,11 @@ void Settings::setDefaults()
|
||||||
mIntMap["ScreenSaverTime"] = 5*60*1000; // 5 minutes
|
mIntMap["ScreenSaverTime"] = 5*60*1000; // 5 minutes
|
||||||
mIntMap["ScraperResizeWidth"] = 400;
|
mIntMap["ScraperResizeWidth"] = 400;
|
||||||
mIntMap["ScraperResizeHeight"] = 0;
|
mIntMap["ScraperResizeHeight"] = 0;
|
||||||
mIntMap["MaxVRAM"] = 100;
|
#ifdef _RPI_
|
||||||
|
mIntMap["MaxVRAM"] = 80;
|
||||||
|
#else
|
||||||
|
mIntMap["MaxVRAM"] = 100;
|
||||||
|
#endif
|
||||||
|
|
||||||
mStringMap["TransitionStyle"] = "fade";
|
mStringMap["TransitionStyle"] = "fade";
|
||||||
mStringMap["ThemeSet"] = "";
|
mStringMap["ThemeSet"] = "";
|
||||||
|
|
Loading…
Reference in a new issue