Changed the default VRAM limit to 256 MiB.

This commit is contained in:
Leon Styhre 2021-01-17 10:15:17 +01:00
parent 632d11e46f
commit b6e29d503c
2 changed files with 2 additions and 2 deletions

View file

@ -954,7 +954,7 @@ These are mostly technical settings.
**VRAM limit**
The amount of video RAM to use for the application. Defaults to 128 MiB which seems to work fine most of the time. The allowed range is 80 to 1024 MiB. If you try to set it lower or higher than this by passing such values as command line parameters or edit the es_settings.cfg file manually, ES-DE will log a warning and automatically adjust the value within the allowable range.
The amount of video RAM to use for the application. Defaults to 256 MiB which seems to work fine most of the time. The allowed range is 80 to 1024 MiB. If you try to set it lower or higher than this by passing such values as command line parameters or edit the es_settings.cfg file manually, ES-DE will log a warning and automatically adjust the value within the allowable range.
**Fullscreen mode (requires restart)** _(Unix only)_

View file

@ -189,7 +189,7 @@ void Settings::setDefaults()
#if defined(_RPI_)
mIntMap["MaxVRAM"] = { 80, 80 };
#else
mIntMap["MaxVRAM"] = { 128, 128 };
mIntMap["MaxVRAM"] = { 256, 256 };
#endif
#if defined (__unix__)
mStringMap["FullscreenMode"] = { "normal", "normal" };