summaryrefslogtreecommitdiff
path: root/src/strings.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-01-03 17:09:31 +0000
committerrubidium <rubidium@openttd.org>2009-01-03 17:09:31 +0000
commit099022224f9eef0e9f4a01d83fea7217e6f83b86 (patch)
tree0c77597eda8bd41f5d61be3456938baf42eed730 /src/strings.cpp
parent455a6e4554f7b65e0c68bc9fe44ee558e5524ea3 (diff)
downloadopenttd-099022224f9eef0e9f4a01d83fea7217e6f83b86.tar.xz
(svn r14810) -Codechange: use the proper style for global variables.
Diffstat (limited to 'src/strings.cpp')
-rw-r--r--src/strings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strings.cpp b/src/strings.cpp
index 2373a4c4e..a03354ae5 100644
--- a/src/strings.cpp
+++ b/src/strings.cpp
@@ -1189,7 +1189,7 @@ static char *GetSpecialNameString(char *buff, int ind, const int64 *argv, const
return GenPresidentName(buff, GetInt32(&argv), last);
case 4: // song names
- return strecpy(buff, origin_songs_specs[GetInt32(&argv) - 1].song_name, last);
+ return strecpy(buff, _origin_songs_specs[GetInt32(&argv) - 1].song_name, last);
}
/* town name? */