[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
|
@ -177,7 +177,7 @@ public final class EmulationActivity extends Activity
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.onOptionsItemSelected( item );
|
return super.onMenuItemSelected(itemId, item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue