Browse Source
remove from android
Signed-off-by: lizzie <lizzie@eden-emu.dev>
pull/2640/head
lizzie
5 months ago
committed by
crueter
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
3 changed files with
0 additions and
10 deletions
-
src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/model/BooleanSetting.kt
-
src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/model/view/SettingsItem.kt
-
src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/ui/SettingsFragmentPresenter.kt
|
|
|
@ -10,7 +10,6 @@ import org.yuzu.yuzu_emu.utils.NativeConfig |
|
|
|
|
|
|
|
enum class BooleanSetting(override val key: String) : AbstractBooleanSetting { |
|
|
|
AUDIO_MUTED("audio_muted"), |
|
|
|
CPU_DEBUG_MODE("cpu_debug_mode"), |
|
|
|
FASTMEM("cpuopt_fastmem"), |
|
|
|
FASTMEM_EXCLUSIVES("cpuopt_fastmem_exclusives"), |
|
|
|
CORE_SYNC_CORE_SPEED("sync_core_speed"), |
|
|
|
|
|
|
|
@ -764,13 +764,6 @@ abstract class SettingsItem( |
|
|
|
descriptionId = R.string.use_auto_stub_description |
|
|
|
) |
|
|
|
) |
|
|
|
put( |
|
|
|
SwitchSetting( |
|
|
|
BooleanSetting.CPU_DEBUG_MODE, |
|
|
|
titleId = R.string.cpu_debug_mode, |
|
|
|
descriptionId = R.string.cpu_debug_mode_description |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
val fastmem = object : AbstractBooleanSetting { |
|
|
|
override fun getBoolean(needsGlobal: Boolean): Boolean = |
|
|
|
@ -784,7 +777,6 @@ abstract class SettingsItem( |
|
|
|
|
|
|
|
override val key: String = FASTMEM_COMBINED |
|
|
|
override val isRuntimeModifiable: Boolean = false |
|
|
|
override val pairedSettingKey = BooleanSetting.CPU_DEBUG_MODE.key |
|
|
|
override val defaultValue: Boolean = true |
|
|
|
override val isSwitchable: Boolean = true |
|
|
|
override var global: Boolean |
|
|
|
|
|
|
|
@ -1158,7 +1158,6 @@ class SettingsFragmentPresenter( |
|
|
|
add(IntSetting.CPU_BACKEND.key) |
|
|
|
add(IntSetting.CPU_ACCURACY.key) |
|
|
|
add(BooleanSetting.USE_AUTO_STUB.key) |
|
|
|
add(BooleanSetting.CPU_DEBUG_MODE.key) |
|
|
|
add(SettingsItem.FASTMEM_COMBINED) |
|
|
|
|
|
|
|
add(HeaderSetting(R.string.log)) |
|
|
|
|