diff options
author | Eugene Sandulenko | 2011-08-06 10:13:21 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2011-08-06 11:31:01 +0100 |
commit | ae028607841b528a543870db5cba15bd24aec406 (patch) | |
tree | b86394194c25e03abe69e902e73ed18662787ebb | |
parent | 9e0c1a38e1264715e00fba000777cf0b05dde8fb (diff) | |
download | scummvm-rg350-ae028607841b528a543870db5cba15bd24aec406.tar.gz scummvm-rg350-ae028607841b528a543870db5cba15bd24aec406.tar.bz2 scummvm-rg350-ae028607841b528a543870db5cba15bd24aec406.zip |
GUI: Removed redundant button label
-rw-r--r-- | gui/launcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp index 6920e0ccd2..5fafcfbad4 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -1052,7 +1052,7 @@ void LauncherDialog::updateButtons() { const char *newAddButtonLabel = massAdd ? (lowRes ? _c("Mass Add...", "lowres") : _("Mass Add...")) - : (lowRes ? _c("Add Game...", "lowres") : _("Add Game...")); + : (lowRes ? _c("~A~dd Game...", "lowres") : _("~A~dd Game...")); if (_addButton->getLabel() != newAddButtonLabel) _addButton->setLabel(newAddButtonLabel); |