(svn r16886) -Codechange: unify naming of some string IDs related to string codes and group them logically

This commit is contained in:
rubidium
2009-07-20 11:21:57 +00:00
parent dc943b35e0
commit e3053660c6
62 changed files with 520 additions and 520 deletions

View File

@@ -33,7 +33,7 @@
char *waypoint_name = MallocT<char>(len);
::SetDParam(0, waypoint_id);
::GetString(waypoint_name, STR_WAYPOINT_RAW, &waypoint_name[len - 1]);
::GetString(waypoint_name, STR_WAYPOINT_NAME, &waypoint_name[len - 1]);
return waypoint_name;
}