diff options
author | Darkvater <darkvater@openttd.org> | 2006-10-14 15:49:43 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2006-10-14 15:49:43 +0000 |
commit | dad5d5dd72a32b3dbaea68c71e996f053fa557e7 (patch) | |
tree | 4d65683dddf832ac860c3ff0f26f99db4e9ea997 /video | |
parent | abb0fa7bc53d755463d6cb314ac6044b5dcb22af (diff) | |
download | openttd-dad5d5dd72a32b3dbaea68c71e996f053fa557e7.tar.xz |
(svn r6774) -Codechange: Rename the badly named OWNER_SPECTATOR to PLAYER_SPECTATOR and
put it into player.h where it belongs (instead of map.h)
Diffstat (limited to 'video')
-rw-r--r-- | video/dedicated_v.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/video/dedicated_v.c b/video/dedicated_v.c index 4ec281f64..17fc33d57 100644 --- a/video/dedicated_v.c +++ b/video/dedicated_v.c @@ -238,8 +238,8 @@ static void DedicatedVideoMainLoop(void) // Load the dedicated server stuff _is_network_server = true; _network_dedicated = true; - _network_playas = OWNER_SPECTATOR; - _local_player = OWNER_SPECTATOR; + _network_playas = PLAYER_SPECTATOR; + _local_player = PLAYER_SPECTATOR; /* If SwitchMode is SM_LOAD, it means that the user used the '-g' options */ if (_switch_mode != SM_LOAD) { |