summaryrefslogtreecommitdiff
path: root/src/genworld_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-04-26 15:42:45 +0000
committerrubidium <rubidium@openttd.org>2009-04-26 15:42:45 +0000
commit85b653bafcee2a7687cbbebb7a0d65aa9ae8081b (patch)
treefc9d6c7002a5a271f9d586dbc0e844b439d05a8a /src/genworld_gui.cpp
parent7dd677ced22abb688b2ed69f99faed211f3554b1 (diff)
downloadopenttd-85b653bafcee2a7687cbbebb7a0d65aa9ae8081b.tar.xz
(svn r16163) -Codechange: instead of SetDParamStr(0, string); DrawString(..., STR_JUST_RAW_STRING, ...) use DrawString(..., string, ...).
Diffstat (limited to 'src/genworld_gui.cpp')
-rw-r--r--src/genworld_gui.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/genworld_gui.cpp b/src/genworld_gui.cpp
index bd2ed937a..f9c6082f8 100644
--- a/src/genworld_gui.cpp
+++ b/src/genworld_gui.cpp
@@ -645,8 +645,7 @@ struct GenerateLandscapeWindow : public QueryStringBaseWindow {
int right = DrawString(0, 326, 91, STR_HEIGHTMAP_SIZE, TC_FROMSTRING, SA_RIGHT);
DrawString( 12, 114, 91, STR_HEIGHTMAP_NAME);
- SetDParamStr(0, this->name);
- DrawString(114, right - 5, 91, STR_JUST_RAW_STRING, TC_ORANGE);
+ DrawString(114, right - 5, 91, this->name, TC_ORANGE);
}
}