Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Fix an accidental call to the wrong method in the superclas…
…s of EmulationActivity. Should have been returning "super.onMenuItemSelected(itemId, item)" instead of "super.onOptionsItemSelected(item)".
  • Loading branch information
lioncash committed Sep 3, 2013
1 parent 8ae10b3 commit 70cfe96
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -177,7 +177,7 @@ public boolean onMenuItemSelected(int itemId, MenuItem item)
return true;

default:
return super.onOptionsItemSelected( item );
return super.onMenuItemSelected(itemId, item);
}
}

Expand Down

0 comments on commit 70cfe96

Please sign in to comment.