mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Changed the default VRAM limit to 256 MiB.
This commit is contained in:
parent
632d11e46f
commit
b6e29d503c
|
@ -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)_
|
||||
|
||||
|
|
|
@ -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" };
|
||||
|
|
Loading…
Reference in a new issue