Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #46 from Sonicadvance1/Android-removeDLCache
Remove Cache DL option from Android UI
  • Loading branch information
delroth committed Feb 6, 2014
2 parents 4c6d4cc + 3666178 commit 6d67849
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 13 deletions.
2 changes: 0 additions & 2 deletions Source/Android/res/values-ja/strings.xml
Expand Up @@ -185,8 +185,6 @@
<string name="external_frame_buffer_descrip">XFBをエミュレート方法を決定。</string>
<string name="external_frame_buffer_virtual">バーチャル</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_descrip">多くのタイトルで画面効果に使用されている、アルファ透過処理をスキップ 。</string>
<string name="fast_depth_calculation">高速奥行き計算</string>
Expand Down
2 changes: 0 additions & 2 deletions Source/Android/res/values/strings.xml
Expand Up @@ -187,8 +187,6 @@
<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_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_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>
Expand Down
6 changes: 0 additions & 6 deletions Source/Android/res/xml/video_prefs.xml
Expand Up @@ -106,12 +106,6 @@
<!-- Other Hacks -->
<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
android:defaultValue="false"
android:key="disableDestinationAlpha"
Expand Down
Expand Up @@ -146,9 +146,6 @@ public static void SavePrefsToIni(Context ctx)
// External frame buffer emulation. Falls back to disabled upon error.
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.
boolean disableDstAlphaPass = prefs.getBoolean("disableDestinationAlpha", false);

Expand Down

0 comments on commit 6d67849

Please sign in to comment.