summaryrefslogtreecommitdiff
path: root/openttd.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-22 16:38:50 +0000
committertruelight <truelight@openttd.org>2006-08-22 16:38:50 +0000
commitb34d77ca3fe5236378e116eba3e4f6402eb89609 (patch)
treedc441269644e5f08879ff06482e03b5deb80d491 /openttd.c
parentc0f352670ac91977145a3a9df44e5cabfb9c49b6 (diff)
downloadopenttd-b34d77ca3fe5236378e116eba3e4f6402eb89609.tar.xz
(svn r6050) -Codechange: mass-renamed SignStruct -> Sign and ss -> si. Now functions and variables all match eachother
Diffstat (limited to 'openttd.c')
-rw-r--r--openttd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openttd.c b/openttd.c
index 4a7357991..12552f152 100644
--- a/openttd.c
+++ b/openttd.c
@@ -1091,9 +1091,9 @@ static void UpdateVoidTiles(void)
// since savegame version 6.0 each sign has an "owner", signs without owner (from old games are set to 255)
static void UpdateSignOwner(void)
{
- SignStruct *ss;
+ Sign *si;
- FOR_ALL_SIGNS(ss) ss->owner = OWNER_NONE;
+ FOR_ALL_SIGNS(si) si->owner = OWNER_NONE;
}
extern void UpdateOldAircraft( void );