diff options
| author | Lioncash <mathew1800@gmail.com> | 2013-11-15 22:21:50 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2013-11-15 22:21:50 -0500 |
| commit | 23c84c220f396c53731360dd90acaf278d212422 (patch) | |
| tree | 78c1b397f8774df72ff755e4408ff21a95ca4e41 /Source/Android/src/org | |
| parent | 3a13dfdd9b9717a4610908e973a886e115b6ac36 (diff) | |
[Android] Add ability to take screenshots into the emulation menu.
Diffstat (limited to 'Source/Android/src/org')
| -rw-r--r-- | Source/Android/src/org/dolphinemu/dolphinemu/emulation/EmulationActivity.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/emulation/EmulationActivity.java b/Source/Android/src/org/dolphinemu/dolphinemu/emulation/EmulationActivity.java index 0fdd0c1bee..926b971398 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/emulation/EmulationActivity.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/emulation/EmulationActivity.java @@ -175,6 +175,11 @@ public final class EmulationActivity extends Activity { switch(item.getItemId()) { + // Screenshot capturing + case R.id.takeScreenshot: + NativeLibrary.SaveScreenShot(); + return true; + // Save state slots case R.id.saveSlot1: NativeLibrary.SaveState(0); |
