Increased the default value for the MaxVRAM setting to 512 for the Steam Deck.

This commit is contained in:
Leon Styhre 2022-04-03 13:37:41 +02:00
parent 03c2d2658f
commit acbbb0a630

View file

@ -215,7 +215,9 @@ void Settings::setDefaults()
// Other settings.
mStringMap["MediaDirectory"] = {"", ""};
#if defined(_RPI_)
#if defined(STEAM_DECK)
mIntMap["MaxVRAM"] = {512, 512};
#elif defined(_RPI_)
mIntMap["MaxVRAM"] = {184, 184};
#else
mIntMap["MaxVRAM"] = {256, 256};