mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-15 16:59:18 +01:00
Android: Remove an unnecessary getString call from EmulationActivity
This commit is contained in:
parent
be1fe80bb6
commit
5c7ed205a9
@ -253,7 +253,7 @@ public final class EmulationActivity extends Activity
|
|||||||
{
|
{
|
||||||
// Create a confirmation method for quitting the current emulation instance.
|
// Create a confirmation method for quitting the current emulation instance.
|
||||||
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
||||||
builder.setTitle(getString(R.string.overlay_exit_emulation));
|
builder.setTitle(R.string.overlay_exit_emulation);
|
||||||
builder.setMessage(R.string.overlay_exit_emulation_confirm);
|
builder.setMessage(R.string.overlay_exit_emulation_confirm);
|
||||||
builder.setNegativeButton(R.string.no, null);
|
builder.setNegativeButton(R.string.no, null);
|
||||||
builder.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
|
builder.setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user