(Android) Remove shader pack link - obsolete now with shaders packaged in

This commit is contained in:
twinaphex 2013-02-04 02:04:49 +01:00
parent 76e93daceb
commit 58e1365a5c
3 changed files with 0 additions and 9 deletions

View File

@ -7,6 +7,4 @@
<item android:id="@+id/retroarch_guide" android:title="@string/retroarch_guide"></item>
<item android:id="@+id/cores_guide" android:title="@string/cores_guide"></item>
<item android:id="@+id/overlay_guide" android:title="@string/overlay_guide"></item>
<item android:id="@+id/shader_pack" android:title="@string/shader_pack"></item>
</menu>

View File

@ -12,7 +12,6 @@
<string name="retroarch_guide">RetroArch Guide</string>
<string name="cores_guide">Cores Guide</string>
<string name="overlay_guide">Overlay How-to Guide</string>
<string name="shader_pack">Shader Pack</string>
<string name="key_bind_title">Select the button to use</string>
<string name="key_bind_clear">Unbind</string>
<string name="report_ime">Report IME</string>

View File

@ -513,12 +513,6 @@ public class RetroArch extends Activity implements
Intent mguide = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.libretro.org/documents/overlay.pdf"));
startActivity(mguide);
return true;
case R.id.shader_pack:
Intent sguide = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.libretro.org/shaders/xml-gles-shaders.zip"));
startActivity(sguide);
return true;
default:
return false;
}