mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +00:00
Android: Remove an unnecessary getString call from EmulationActivity
This commit is contained in:
parent
be1fe80bb6
commit
5c7ed205a9
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue