aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Marti2008-10-29 19:02:45 +0000
committerVicent Marti2008-10-29 19:02:45 +0000
commit08f1e004151ab25f098b1a1de3fda90e00457164 (patch)
tree06087a9c8e6d32ce786e987f25def7e1b4c8d3fa
parentfccf455bcc815755191c6dacc32ad6689667fe56 (diff)
downloadscummvm-rg350-08f1e004151ab25f098b1a1de3fda90e00457164.tar.gz
scummvm-rg350-08f1e004151ab25f098b1a1de3fda90e00457164.tar.bz2
scummvm-rg350-08f1e004151ab25f098b1a1de3fda90e00457164.zip
Fixed: Text too big in 1x mode.
svn-id: r34863
-rw-r--r--gui/launcher.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index 41c3cec8fe..55489e2017 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -809,9 +809,9 @@ LauncherDialog::LauncherDialog()
// Above the lowest button rows: two more buttons (directly below the list box)
_addButton =
- new ButtonWidget(this, "Launcher.AddGameButton", "Add Game...", kAddGameCmd, 'A');
+ new ButtonWidget(this, "Launcher.AddGameButton", "Add Game", kAddGameCmd, 'A');
_editButton =
- new ButtonWidget(this, "Launcher.EditGameButton", "Edit Game...", kEditGameCmd, 'E');
+ new ButtonWidget(this, "Launcher.EditGameButton", "Edit Game", kEditGameCmd, 'E');
_removeButton =
new ButtonWidget(this, "Launcher.RemoveGameButton", "Remove Game", kRemoveGameCmd, 'R');
@@ -1217,8 +1217,8 @@ void LauncherDialog::updateButtons() {
// Update the label of the "Add" button depending on whether shift is pressed or not
int modifiers = g_system->getEventManager()->getModifierState();
const char *newAddButtonLabel = ((modifiers & Common::KBD_SHIFT) != 0)
- ? "Mass Add..."
- : "Add Game...";
+ ? "Mass Add"
+ : "Add Game";
if (_addButton->getLabel() != newAddButtonLabel) {
_addButton->setLabel(newAddButtonLabel);