ENGINES: Fix autosave overwrite message

The message is formatted as U32String, and the argument is U32String so %S should be used.
This commit is contained in:
antoniou79 2021-08-28 20:55:53 +03:00
parent 1bd9b5521d
commit 5f9b39e55b

View File

@ -553,7 +553,7 @@ bool Engine::warnBeforeOverwritingAutosave() {
altButtons.push_back(_("Overwrite"));
altButtons.push_back(_("Cancel autosave"));
const Common::U32String message = Common::U32String::format(
_("WARNING: The autosave slot has a saved game named %s. "
_("WARNING: The autosave slot has a saved game named %S. "
"You can either move the existing save to a new slot, "
"Overwrite the existing save, "
"or cancel autosave (will not prompt again until restart)"), desc.getDescription().c_str());