Android: Add "Disable Fastmem" debug setting
This commit is contained in:
parent
d043c5f81d
commit
777da89830
|
@ -9,6 +9,7 @@ public enum BooleanSetting implements AbstractBooleanSetting
|
|||
// These entries have the same names and order as in C++, just for consistency.
|
||||
|
||||
MAIN_DSP_HLE(Settings.FILE_DOLPHIN, Settings.SECTION_INI_CORE, "DSPHLE", true),
|
||||
MAIN_FASTMEM(Settings.FILE_DOLPHIN, Settings.SECTION_INI_CORE, "Fastmem", true),
|
||||
MAIN_CPU_THREAD(Settings.FILE_DOLPHIN, Settings.SECTION_INI_CORE, "CPUThread", true),
|
||||
MAIN_OVERRIDE_REGION_SETTINGS(Settings.FILE_DOLPHIN, Settings.SECTION_INI_CORE,
|
||||
"OverrideRegionSettings", false),
|
||||
|
|
|
@ -650,6 +650,7 @@ public final class SettingsFragmentPresenter
|
|||
private void addDebugSettings(ArrayList<SettingsItem> sl)
|
||||
{
|
||||
sl.add(new HeaderSetting(R.string.debug_warning, 0));
|
||||
sl.add(new InvertedCheckBoxSetting(BooleanSetting.MAIN_FASTMEM, R.string.debug_fastmem, 0));
|
||||
|
||||
sl.add(new HeaderSetting(R.string.debug_jit_header, 0));
|
||||
sl.add(new CheckBoxSetting(BooleanSetting.MAIN_JIT_OFF, R.string.debug_jitoff, 0));
|
||||
|
|
|
@ -287,7 +287,8 @@
|
|||
|
||||
<!-- Debug -->
|
||||
<string name="debug_submenu">Debug</string>
|
||||
<string name="debug_warning">Warning: These settings will slow emulation</string>
|
||||
<string name="debug_warning">Warning: Debug settings will slow emulation</string>
|
||||
<string name="debug_fastmem">Disable Fastmem</string>
|
||||
<string name="debug_jit_header">Jit</string>
|
||||
<string name="debug_jitoff">Jit Disabled</string>
|
||||
<string name="debug_jitloadstoreoff">Jit Load Store Disabled</string>
|
||||
|
|
Loading…
Reference in New Issue