From a9775d486eb65da41f00ce0b98e265da223dad99 Mon Sep 17 00:00:00 2001 From: kleidis <167202775+kleidis@users.noreply.github.com> Date: Mon, 23 Sep 2024 13:06:08 +0200 Subject: [PATCH] android: Make `Asynchronous shader compilation` non runtime editable (#260) I'm sure this was an oversight by the original devs and not intended to actually be runtime editable guessing by Qt's behavior See https://github.com/Lime3DS/Lime3DS/issues/442 --- .../citra/citra_emu/features/settings/model/BooleanSetting.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/BooleanSetting.kt b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/BooleanSetting.kt index 8ef9664f3..227d2dbc2 100644 --- a/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/BooleanSetting.kt +++ b/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/BooleanSetting.kt @@ -34,7 +34,8 @@ enum class BooleanSetting( companion object { private val NOT_RUNTIME_EDITABLE = listOf( PLUGIN_LOADER, - ALLOW_PLUGIN_LOADER + ALLOW_PLUGIN_LOADER, + ASYNC_SHADERS ) fun from(key: String): BooleanSetting? =