summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorplanetmaker <planetmaker@openttd.org>2013-09-22 12:59:59 +0000
committerplanetmaker <planetmaker@openttd.org>2013-09-22 12:59:59 +0000
commit5f415fa78e901fcd225ea88503fba48cf9cf6573 (patch)
tree5e58d5fa5446fe7ce115d0193221418504f34277
parentce5ea8900c0d7f92f1dfbdc3d43973ede338a4de (diff)
downloadopenttd-5f415fa78e901fcd225ea88503fba48cf9cf6573.tar.xz
(svn r25792) -Change: Clarify the relevance of the permissible palettes
-rw-r--r--src/lang/english.txt4
-rw-r--r--src/newgrf_gui.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lang/english.txt b/src/lang/english.txt
index 1d1ec731d..dca3179ed 100644
--- a/src/lang/english.txt
+++ b/src/lang/english.txt
@@ -1339,8 +1339,8 @@ STR_CONFIG_SETTING_DATE_FORMAT_IN_SAVE_NAMES_ISO :ISO (2008-12-31
STR_CONFIG_SETTING_NEWGRF_DEFAULT_PALETTE :Default palette to assume for NewGRFs not specifying a palette: {STRING2}
STR_CONFIG_SETTING_NEWGRF_DEFAULT_PALETTE_HELPTEXT :Default palette to use for NewGRFs that do not specify which one they need
-STR_CONFIG_SETTING_NEWGRF_DEFAULT_PALETTE_DOS :DOS palette
-STR_CONFIG_SETTING_NEWGRF_DEFAULT_PALETTE_WIN :Windows palette
+STR_CONFIG_SETTING_NEWGRF_DEFAULT_PALETTE_DOS :Default (D) palette
+STR_CONFIG_SETTING_NEWGRF_DEFAULT_PALETTE_WIN :Legacy (W) palette
STR_CONFIG_SETTING_PAUSE_ON_NEW_GAME :Automatically pause when starting a new game: {STRING2}
STR_CONFIG_SETTING_PAUSE_ON_NEW_GAME_HELPTEXT :When enabled, the game will automatically pause when starting a new game, allowing for closer study of the map
diff --git a/src/newgrf_gui.cpp b/src/newgrf_gui.cpp
index 287ed0939..bf82783e0 100644
--- a/src/newgrf_gui.cpp
+++ b/src/newgrf_gui.cpp
@@ -119,9 +119,9 @@ static void ShowNewGRFInfo(const GRFConfig *c, uint x, uint y, uint right, uint
/* Draw the palette of the NewGRF */
if (c->palette & GRFP_BLT_32BPP) {
- SetDParamStr(0, (c->palette & GRFP_USE_WINDOWS) ? "Windows / 32 bpp" : "DOS / 32 bpp");
+ SetDParamStr(0, (c->palette & GRFP_USE_WINDOWS) ? "Legacy (W) / 32 bpp" : "Default (D) / 32 bpp");
} else {
- SetDParamStr(0, (c->palette & GRFP_USE_WINDOWS) ? "Windows" : "DOS");
+ SetDParamStr(0, (c->palette & GRFP_USE_WINDOWS) ? "Legacy (W)" : "Default (D)");
}
y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_SETTINGS_PALETTE);
}