mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 23:54:06 +00:00
53 lines
2.0 KiB
XML
53 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:title="RetroArch Config" >
|
|
|
|
<PreferenceScreen android:title="System Config" >
|
|
<CheckBoxPreference
|
|
android:defaultValue="false"
|
|
android:key="savestate_auto_save"
|
|
android:summary="Automatically saves and restores game state"
|
|
android:title="Auto save state" />
|
|
<CheckBoxPreference
|
|
android:defaultValue="false"
|
|
android:key="rewind_enable"
|
|
android:summary="Rewind a game in real-time (WARNING - very CPU intensive)."
|
|
android:title="Rewind" />
|
|
</PreferenceScreen>
|
|
|
|
<PreferenceScreen android:title="Video Config" >
|
|
<CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="video_smooth"
|
|
android:summary="Applies bilinear filter, smooths out edges"
|
|
android:title="Bilinear filter" />
|
|
<CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="video_allow_rotate"
|
|
android:summary="Will auto-rotate the screen for vertically oriented games."
|
|
android:title="Auto-rotate" />
|
|
|
|
<ListPreference
|
|
android:entryValues="@array/aspect_values"
|
|
android:entries="@array/aspect_ratios"
|
|
android:key="video_aspect_ratio"
|
|
android:title="Aspect ratio"
|
|
android:summary="Aspect ratio to enforce" />
|
|
|
|
</PreferenceScreen>
|
|
|
|
<PreferenceScreen android:title="Audio Config" >
|
|
<CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="audio_enable"
|
|
android:summary="Enable audio"
|
|
android:title="Audio enable" />
|
|
<CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="audio_rate_control"
|
|
android:summary="Enable dynamic rate control"
|
|
android:title="Dynamic Rate Control" />
|
|
|
|
</PreferenceScreen>
|
|
</PreferenceScreen>
|