mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 15:55:31 +01:00
Merge pull request #560 from lioncash/android-misc
Android: Remove an unnecessary getString call from EmulationActivity
This commit is contained in:
commit
0b74ad1b20
@ -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