mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-30 19:51:11 -04:00
125 lines
5.2 KiB
XML
125 lines
5.2 KiB
XML
<!--
|
|
~ Copyright 2018 The app Open Source Project
|
|
~
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
~ you may not use this file except in compliance with the License.
|
|
~ You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
-->
|
|
|
|
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<Preference
|
|
app:title="@string/settings_game_directories"
|
|
app:summary="@string/settings_summary_game_directories"
|
|
app:iconSpaceReserved="false">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:targetClass="com.github.stenzek.duckstation.GameDirectoriesActivity"
|
|
android:targetPackage="com.github.stenzek.duckstation" />
|
|
</Preference>
|
|
<ListPreference
|
|
app:key="Main/EmulationSpeed"
|
|
app:title="@string/settings_emulation_speed"
|
|
app:entries="@array/settings_emulation_speed_entries"
|
|
app:entryValues="@array/settings_emulation_speed_values"
|
|
app:defaultValue="1.0"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:iconSpaceReserved="false" />
|
|
<ListPreference
|
|
app:key="Main/FastForwardSpeed"
|
|
app:title="@string/settings_fast_forward_speed"
|
|
app:entries="@array/settings_emulation_speed_entries"
|
|
app:entryValues="@array/settings_emulation_speed_values"
|
|
app:defaultValue="0.0"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:iconSpaceReserved="false" />
|
|
<SwitchPreferenceCompat
|
|
app:key="Main/SaveStateOnExit"
|
|
app:title="@string/settings_save_state_on_exit"
|
|
app:defaultValue="true"
|
|
app:summary="@string/settings_summary_save_state_on_exit"
|
|
app:iconSpaceReserved="false" />
|
|
<SwitchPreferenceCompat
|
|
app:key="Main/PauseOnMenu"
|
|
app:title="@string/settings_pause_when_menu_opened"
|
|
app:defaultValue="false"
|
|
app:summary="@string/settings_summary_pause_when_menu_opened"
|
|
app:iconSpaceReserved="false" />
|
|
<ListPreference
|
|
app:key="Main/Theme"
|
|
app:title="@string/settings_theme"
|
|
app:entries="@array/settings_theme_entries"
|
|
app:entryValues="@array/settings_theme_values"
|
|
app:defaultValue="follow_system"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:iconSpaceReserved="false" />
|
|
<ListPreference
|
|
app:key="Main/EmulationScreenOrientation"
|
|
app:title="@string/settings_emulation_screen_orientation"
|
|
app:entries="@array/settings_emulation_screen_orientation_entries"
|
|
app:entryValues="@array/settings_emulation_screen_orientation_values"
|
|
app:defaultValue="unspecified"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:iconSpaceReserved="false" />
|
|
<SwitchPreferenceCompat
|
|
app:key="Main/AutoLoadCheats"
|
|
app:title="@string/settings_load_patch_codes"
|
|
app:defaultValue="false"
|
|
app:summary="@string/settings_summary_load_patch_codes"
|
|
app:iconSpaceReserved="false" />
|
|
<SwitchPreferenceCompat
|
|
app:key="Main/ApplyGameSettings"
|
|
app:title="@string/settings_apply_compatibility_settings"
|
|
app:defaultValue="true"
|
|
app:summary="@string/settings_summary_apply_compatibility_settings"
|
|
app:iconSpaceReserved="false" />
|
|
<SwitchPreferenceCompat
|
|
app:key="Display/VSync"
|
|
app:title="@string/settings_video_sync"
|
|
app:defaultValue="false"
|
|
app:summary="@string/settings_summary_video_sync"
|
|
app:iconSpaceReserved="false" />
|
|
<SwitchPreferenceCompat
|
|
app:key="Main/SyncToHostRefreshRate"
|
|
app:title="@string/settings_general_sync_to_host_refresh_rate"
|
|
app:defaultValue="false"
|
|
app:summary="@string/settings_summary_general_sync_to_host_refresh_rate"
|
|
app:dependency="Display/VSync"
|
|
app:iconSpaceReserved="false" />
|
|
<ListPreference
|
|
app:key="Console/Region"
|
|
app:title="@string/settings_console_region"
|
|
app:entries="@array/settings_console_region_entries"
|
|
app:entryValues="@array/settings_console_region_values"
|
|
app:defaultValue="Auto"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:iconSpaceReserved="false" />
|
|
|
|
<ListPreference
|
|
app:key="CPU/ExecutionMode"
|
|
app:title="@string/settings_cpu_execution_mode"
|
|
app:entries="@array/settings_cpu_execution_mode_entries"
|
|
app:entryValues="@array/settings_cpu_execution_mode_values"
|
|
app:defaultValue="Recompiler"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:iconSpaceReserved="false" />
|
|
|
|
<ListPreference
|
|
app:key="GPU/Renderer"
|
|
app:title="@string/settings_gpu_renderer"
|
|
app:entries="@array/gpu_renderer_entries"
|
|
app:entryValues="@array/gpu_renderer_values"
|
|
app:defaultValue="OpenGL"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:iconSpaceReserved="false" />
|
|
|
|
</PreferenceScreen>
|