2016-07-09 21:41:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:title="@string/preferences">
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
2016-09-17 01:03:54 +00:00
|
|
|
android:key="UserInterface_BasicMode"
|
|
|
|
android:summary="@string/advancedSettings_summary"
|
|
|
|
android:title="@string/advancedSettings_title" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="Debugger_Enabled"
|
|
|
|
android:summary="@string/debuggerEnabled_summary"
|
|
|
|
android:title="@string/debuggerEnabled_title" />
|
|
|
|
<CheckBoxPreference
|
2016-12-20 07:55:28 +00:00
|
|
|
android:key="Debugger_RecordRecompilerAsm"
|
|
|
|
android:summary="@string/RecordRecompilerAsm_summary"
|
|
|
|
android:title="@string/RecordRecompilerAsm_title" />
|
2016-09-17 01:03:54 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="Debugger_LimitFPS"
|
|
|
|
android:summary="@string/LimitFPS_summary"
|
|
|
|
android:title="@string/LimitFPS_title" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="Debugger_CpuUsage"
|
|
|
|
android:summary="@string/CpuUsage_summary"
|
|
|
|
android:title="@string/CpuUsage_title" />
|
2016-10-02 21:46:05 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="Debugger_RecordExecutionTimes"
|
|
|
|
android:summary="@string/RecordExecutionTimes_summary"
|
|
|
|
android:title="@string/RecordExecutionTimes_title" />
|
2016-12-20 07:55:28 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="Debugger_DebugLanguage"
|
|
|
|
android:summary="@string/DebugLanguage_summary"
|
|
|
|
android:title="@string/DebugLanguage_title" />
|
|
|
|
<PreferenceCategory android:title="@string/logging" >
|
2016-11-23 08:27:53 +00:00
|
|
|
<Preference
|
|
|
|
android:title="@string/project64core"
|
|
|
|
android:key="logging_core" />
|
2017-04-29 08:31:41 +00:00
|
|
|
<Preference
|
|
|
|
android:title="@string/VideoPlugin"
|
|
|
|
android:key="logging_video" />
|
2016-11-23 08:27:53 +00:00
|
|
|
<Preference
|
|
|
|
android:title="@string/AudioPlugin"
|
|
|
|
android:key="logging_audio" />
|
2016-07-09 21:41:46 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|