From acbbb0a6309874285e7a53d767d77ef2d516c16b Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sun, 3 Apr 2022 13:37:41 +0200 Subject: [PATCH] Increased the default value for the MaxVRAM setting to 512 for the Steam Deck. --- es-core/src/Settings.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/es-core/src/Settings.cpp b/es-core/src/Settings.cpp index bce352f55..d2abbcbbf 100644 --- a/es-core/src/Settings.cpp +++ b/es-core/src/Settings.cpp @@ -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};