diff --git a/AndorsTrail/res/values/strings.xml b/AndorsTrail/res/values/strings.xml index 372c0003b..e03f53f71 100644 --- a/AndorsTrail/res/values/strings.xml +++ b/AndorsTrail/res/values/strings.xml @@ -540,5 +540,7 @@ Lowers AP cost of using items in combat by %1$d AP Increases AP cost of equipping items in combat by %1$d AP Lowers AP cost of equipping items in combat by %1$d AP + + Are you sure you want to overwrite this savegame? diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/activity/LoadSaveActivity.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/activity/LoadSaveActivity.java index a8d56d6c8..79c93659f 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/activity/LoadSaveActivity.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/activity/LoadSaveActivity.java @@ -107,12 +107,10 @@ public final class LoadSaveActivity extends Activity implements OnClickListener public void onClick(View view) { final int slot = (Integer) view.getTag(); if (requiresConfirmation(slot)) { - final String playerName = model.player.actorTraits.name; - new AlertDialog.Builder(this) .setIcon(android.R.drawable.ic_dialog_alert) .setTitle(R.string.loadsave_save_overwrite_confirmation_title) - .setMessage(getString(R.string.loadsave_save_overwrite_confirmation, Savegames.quickload(this, slot).playerName, playerName)) + .setMessage(getString(R.string.loadsave_save_overwrite_confirmation_all)) .setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) {