aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorBen Castricum2016-11-29 11:43:57 +0100
committerBen Castricum2016-11-29 20:15:20 +0100
commit6f38c1e55dd9d9ad764faf123c3ee01ae23d7ffc (patch)
treee522d825ae4af7a68435649f335e92d3be9881f4 /gui
parent38eb27212d32351e885806f96555e58f081c6844 (diff)
downloadscummvm-rg350-6f38c1e55dd9d9ad764faf123c3ee01ae23d7ffc.tar.gz
scummvm-rg350-6f38c1e55dd9d9ad764faf123c3ee01ae23d7ffc.tar.bz2
scummvm-rg350-6f38c1e55dd9d9ad764faf123c3ee01ae23d7ffc.zip
ALL: game state => saved game
Diffstat (limited to 'gui')
-rw-r--r--gui/saveload-dialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/saveload-dialog.cpp b/gui/saveload-dialog.cpp
index af02e36c13..4bd71d39cf 100644
--- a/gui/saveload-dialog.cpp
+++ b/gui/saveload-dialog.cpp
@@ -574,7 +574,7 @@ void SaveLoadChooserSimple::updateSelection(bool redraw) {
if (startEditMode) {
_list->startEditMode();
- if (_chooseButton->isEnabled() && _list->getSelectedString() == _("Untitled savestate") &&
+ if (_chooseButton->isEnabled() && _list->getSelectedString() == _("Untitled saved game") &&
_list->getSelectionColor() == ThemeEngine::kFontColorAlternate) {
_list->setEditString("");
_list->setEditColor(ThemeEngine::kFontColorNormal);
@@ -657,12 +657,12 @@ void SaveLoadChooserSimple::updateSaveList() {
}
}
- // Show "Untitled savestate" for empty/whitespace saved game descriptions
+ // Show "Untitled saved game" for empty/whitespace saved game descriptions
Common::String description = x->getDescription();
Common::String trimmedDescription = description;
trimmedDescription.trim();
if (trimmedDescription.empty()) {
- description = _("Untitled savestate");
+ description = _("Untitled saved game");
colors.push_back(ThemeEngine::kFontColorAlternate);
} else {
colors.push_back((x->getLocked() ? ThemeEngine::kFontColorAlternate : ThemeEngine::kFontColorNormal));