mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 03:24:59 +00:00
[Android] Fix an accidental call to the wrong method in the superclass of EmulationActivity. Should have been returning "super.onMenuItemSelected(itemId, item)" instead of "super.onOptionsItemSelected(item)".
This commit is contained in:
parent
8ae10b3e12
commit
70cfe96492
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ public final class EmulationActivity extends Activity
|
|||
return true;
|
||||
|
||||
default:
|
||||
return super.onOptionsItemSelected( item );
|
||||
return super.onMenuItemSelected(itemId, item);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue