(svn r16163) -Codechange: instead of SetDParamStr(0, string); DrawString(..., STR_JUST_RAW_STRING, ...) use DrawString(..., string, ...).

This commit is contained in:
rubidium
2009-04-26 15:42:45 +00:00
parent 7dd677ced2
commit 85b653bafc
4 changed files with 7 additions and 16 deletions

View File

@@ -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);
}
}