diff options
author | Ben Castricum | 2014-08-22 06:36:50 +0200 |
---|---|---|
committer | Ben Castricum | 2014-08-22 06:40:15 +0200 |
commit | 500af48ef76da789adb384b1446d4c21b7924099 (patch) | |
tree | ac3cec6f501e07e0bd2397cf8faacb6964ff9253 /gui | |
parent | cb94d1f943031f8481adf398ccb1d6901e10307b (diff) | |
download | scummvm-rg350-500af48ef76da789adb384b1446d4c21b7924099.tar.gz scummvm-rg350-500af48ef76da789adb384b1446d4c21b7924099.tar.bz2 scummvm-rg350-500af48ef76da789adb384b1446d4c21b7924099.zip |
GUI: Fix description of game specific extraPath
Diffstat (limited to 'gui')
-rw-r--r-- | gui/launcher.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp index 9ac97a77d6..aa3c9beccc 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -327,10 +327,10 @@ EditGameDialog::EditGameDialog(const String &domain, const String &desc) // GUI: Button + Label for the additional path if (g_system->getOverlayWidth() > 320) - new ButtonWidget(tab, "GameOptions_Paths.Extrapath", _("Extra Path:"), _("Specifies path to additional data used the game"), kCmdExtraBrowser); + new ButtonWidget(tab, "GameOptions_Paths.Extrapath", _("Extra Path:"), _("Specifies path to additional data used by the game"), kCmdExtraBrowser); else - new ButtonWidget(tab, "GameOptions_Paths.Extrapath", _c("Extra Path:", "lowres"), _("Specifies path to additional data used the game"), kCmdExtraBrowser); - _extraPathWidget = new StaticTextWidget(tab, "GameOptions_Paths.ExtrapathText", extraPath, _("Specifies path to additional data used the game")); + new ButtonWidget(tab, "GameOptions_Paths.Extrapath", _c("Extra Path:", "lowres"), _("Specifies path to additional data used by the game"), kCmdExtraBrowser); + _extraPathWidget = new StaticTextWidget(tab, "GameOptions_Paths.ExtrapathText", extraPath, _("Specifies path to additional data used by the game")); _extraPathClearButton = addClearButton(tab, "GameOptions_Paths.ExtraPathClearButton", kCmdExtraPathClear); |