mirror of
https://github.com/libretro/RetroArch
synced 2025-01-26 18:35:22 +00:00
(Android) Add link to overlay manual
This commit is contained in:
parent
e92441f5b8
commit
4007f0e3b5
@ -4,4 +4,5 @@
|
||||
<item android:id="@+id/input_method_select" android:title="@string/input_method" android:showAsAction="ifRoom" />
|
||||
<item android:id="@+id/retroarch_guide" android:title="@string/retroarch_guide"></item>
|
||||
<item android:id="@+id/cores_guide" android:title="@string/cores_guide"></item>
|
||||
</menu>
|
||||
<item android:id="@+id/overlay_guide" android:title="@string/overlay_guide"></item>
|
||||
</menu>
|
||||
|
@ -11,5 +11,6 @@
|
||||
<string name="settings">Settings</string>
|
||||
<string name="retroarch_guide">RetroArch Guide</string>
|
||||
<string name="cores_guide">Cores Guide</string>
|
||||
<string name="overlay_guide">Overlay How-to Guide</string>
|
||||
|
||||
</resources>
|
||||
|
@ -410,7 +410,10 @@ public class RetroArch extends Activity implements
|
||||
Intent cguide = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.libretro.org/documents/retroarch-cores-manual.pdf"));
|
||||
startActivity(cguide);
|
||||
return true;
|
||||
|
||||
case R.id.overlay_guide:
|
||||
Intent mguide = new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/libretro/libretro.github.com/blob/master/documents/overlay.pdf"));
|
||||
startActivity(mguide);
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user