2013-05-20 02:57:39 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-08-19 19:10:13 -04:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
<!-- CPU Settings -->
|
|
|
|
<PreferenceScreen
|
|
|
|
android:title="@string/cpu_settings">
|
|
|
|
|
2013-05-20 02:57:39 -05:00
|
|
|
<CheckBoxPreference
|
2013-08-19 19:10:13 -04:00
|
|
|
android:key="dualCorePref"
|
|
|
|
android:summary="@string/on_off"
|
|
|
|
android:title="@string/dual_core" />
|
|
|
|
|
2013-05-20 02:57:39 -05:00
|
|
|
<ListPreference
|
2013-08-19 19:10:13 -04:00
|
|
|
android:key="cpuCorePref"
|
|
|
|
android:summary="@string/emu_core_to_use"
|
|
|
|
android:title="@string/cpu_core" />
|
|
|
|
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
<!-- Video Settings -->
|
|
|
|
<PreferenceScreen
|
|
|
|
android:title="@string/video_settings">
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:key="gpuPref"
|
|
|
|
android:summary="@string/video_backend_to_use"
|
|
|
|
android:title="@string/video_backend" />
|
|
|
|
|
|
|
|
</PreferenceScreen>
|
2013-05-20 02:57:39 -05:00
|
|
|
</PreferenceScreen>
|