summaryrefslogtreecommitdiff
path: root/Source/Android/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2013-09-26 23:40:39 -0400
committerLioncash <mathew1800@gmail.com>2013-09-26 23:40:39 -0400
commit689aca278804709bb824a411eba98373361e56cb (patch)
treed27181f0543a8ad3b212fdcced59c8dd34cf51da /Source/Android/src
parentf6a8733660190283460e47ee0fbd18c3bfb4acec (diff)
[Android] Remove commented out code within EmulationActivity.java. Since the back button handling has a specific purpose, this is no longer needed.
Diffstat (limited to 'Source/Android/src')
-rw-r--r--Source/Android/src/org/dolphinemu/dolphinemu/emulation/EmulationActivity.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/emulation/EmulationActivity.java b/Source/Android/src/org/dolphinemu/dolphinemu/emulation/EmulationActivity.java
index 0b3331455b..c76f65f8f1 100644
--- a/Source/Android/src/org/dolphinemu/dolphinemu/emulation/EmulationActivity.java
+++ b/Source/Android/src/org/dolphinemu/dolphinemu/emulation/EmulationActivity.java
@@ -242,22 +242,6 @@ public final class EmulationActivity extends Activity
{
int action = 0;
- // Special catch for the back key
- // Currently disabled because stopping and starting emulation is broken.
- /*
- if (event.getSource() == InputDevice.SOURCE_KEYBOARD
- && event.getKeyCode() == KeyEvent.KEYCODE_BACK
- && event.getAction() == KeyEvent.ACTION_UP)
- {
- if (Running)
- NativeLibrary.StopEmulation();
- Running = false;
- Intent ListIntent = new Intent(this, GameListActivity.class);
- startActivityForResult(ListIntent, 1);
- return true;
- }
- */
-
if (Running)
{
switch (event.getAction())