mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06: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:
@ -177,7 +177,7 @@ public final class EmulationActivity extends Activity
|
||||
return true;
|
||||
|
||||
default:
|
||||
return super.onOptionsItemSelected( item );
|
||||
return super.onMenuItemSelected(itemId, item);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user