Merge pull request #46 from Sonicadvance1/Android-removeDLCache

Remove Cache DL option from Android UI
This commit is contained in:
Pierre Bourdon 2014-02-07 00:18:40 +01:00
commit 6d678490f5
4 changed files with 0 additions and 13 deletions

View File

@ -185,8 +185,6 @@
<string name="external_frame_buffer_descrip">XFBをエミュレート方法を決定。</string> <string name="external_frame_buffer_descrip">XFBをエミュレート方法を決定。</string>
<string name="external_frame_buffer_virtual">バーチャル</string> <string name="external_frame_buffer_virtual">バーチャル</string>
<string name="external_frame_buffer_real">実機</string> <string name="external_frame_buffer_real">実機</string>
<string name="cache_display_lists">Cache Display Lists</string>
<string name="cache_display_lists_descrip">ディスプレイリストをキャッシュすることによりエミュレーション速度を向上。</string>
<string name="disable_destination_alpha">Disable Destination Alpha</string> <string name="disable_destination_alpha">Disable Destination Alpha</string>
<string name="disable_destination_alpha_descrip">多くのタイトルで画面効果に使用されている、アルファ透過処理をスキップ 。</string> <string name="disable_destination_alpha_descrip">多くのタイトルで画面効果に使用されている、アルファ透過処理をスキップ 。</string>
<string name="fast_depth_calculation">高速奥行き計算</string> <string name="fast_depth_calculation">高速奥行き計算</string>

View File

@ -187,8 +187,6 @@
<string name="external_frame_buffer_descrip">Determines how the XFB will be emulated.</string> <string name="external_frame_buffer_descrip">Determines how the XFB will be emulated.</string>
<string name="external_frame_buffer_virtual">Virtual</string> <string name="external_frame_buffer_virtual">Virtual</string>
<string name="external_frame_buffer_real">Real</string> <string name="external_frame_buffer_real">Real</string>
<string name="cache_display_lists">Cache Display Lists</string>
<string name="cache_display_lists_descrip">Speeds up emulation a bit by caching display lists.</string>
<string name="disable_destination_alpha">Disable Destination Alpha</string> <string name="disable_destination_alpha">Disable Destination Alpha</string>
<string name="disable_destination_alpha_descrip">Disables emulation of a hardware feature called destination alpha, which is used in many games for various effects.</string> <string name="disable_destination_alpha_descrip">Disables emulation of a hardware feature called destination alpha, which is used in many games for various effects.</string>
<string name="fast_depth_calculation">Fast Depth Calculation</string> <string name="fast_depth_calculation">Fast Depth Calculation</string>

View File

@ -106,12 +106,6 @@
<!-- Other Hacks --> <!-- Other Hacks -->
<PreferenceCategory android:title="@string/other"> <PreferenceCategory android:title="@string/other">
<CheckBoxPreference
android:defaultValue="false"
android:key="cacheDisplayLists"
android:summary="@string/cache_display_lists_descrip"
android:title="@string/cache_display_lists"/>
<CheckBoxPreference <CheckBoxPreference
android:defaultValue="false" android:defaultValue="false"
android:key="disableDestinationAlpha" android:key="disableDestinationAlpha"

View File

@ -146,9 +146,6 @@ public final class UserPreferences
// External frame buffer emulation. Falls back to disabled upon error. // External frame buffer emulation. Falls back to disabled upon error.
String externalFrameBuffer = prefs.getString("externalFrameBuffer", "Disabled"); String externalFrameBuffer = prefs.getString("externalFrameBuffer", "Disabled");
// Whether or not display list caching is enabled.
boolean dlistCachingEnabled = prefs.getBoolean("cacheDisplayLists", false);
// Whether or not to disable destination alpha. // Whether or not to disable destination alpha.
boolean disableDstAlphaPass = prefs.getBoolean("disableDestinationAlpha", false); boolean disableDstAlphaPass = prefs.getBoolean("disableDestinationAlpha", false);