From af5eae6b7a20a5b24a486a1d7db0741742bd3220 Mon Sep 17 00:00:00 2001 From: MaranBr Date: Thu, 21 Aug 2025 11:40:11 -0400 Subject: [PATCH] =?UTF-8?q?Add=20optimized=20values=20=E2=80=8B=E2=80=8Bfo?= =?UTF-8?q?r=20each=20platform?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/settings.h | 10 +++++++--- src/yuzu/configuration/shared_translation.cpp | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/common/settings.h b/src/common/settings.h index fd813293a2..9ca635c518 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -518,10 +518,14 @@ struct Values { Category::RendererAdvanced}; SwitchableSetting dyna_state{linkage, -#ifdef ANDROID - 0, -#else +#if defined (_WIN32) 3, +#elif defined(__FreeBSD__) + 3, +#elif defined(__unix__) + 2, +#else + 0, #endif 0, 3, diff --git a/src/yuzu/configuration/shared_translation.cpp b/src/yuzu/configuration/shared_translation.cpp index 4d488b5422..35efe1688d 100644 --- a/src/yuzu/configuration/shared_translation.cpp +++ b/src/yuzu/configuration/shared_translation.cpp @@ -346,7 +346,7 @@ std::unique_ptr InitializeTranslations(QWidget* parent) INSERT(Settings, dyna_state, tr("Extended Dynamic State"), - tr("Controls the number of extensions that can be used in Extended Dynamic State.\nHigher numbers allow for more extensions and can increase performance, but may cause issues with some drivers and vendors.\nThe default value is 3, but can be gradually decreased until stability and a better visual quality are achieved.")); + tr("Controls the number of features that can be used in Extended Dynamic State.\nHigher numbers allow for more features and can increase performance, but may cause issues with some drivers and vendors.\nThe default value may vary depending on your system and hardware configuration.\nThis value can be changed until stability and a better visual quality are achieved.")); INSERT(Settings, provoking_vertex,