(svn r2) -Fix [993829] UDP Fixes (lucaspiller)

-Fix change 255/0xFF to OWNER_SPECTATOR for 
spectator stuff (TrueLight)
This commit is contained in:
darkvater
2004-08-10 14:14:00 +00:00
parent efaeb275f7
commit 804f038594
9 changed files with 41 additions and 24 deletions

View File

@@ -581,7 +581,7 @@ void PlayersYearlyLoop()
}
}
if (_patches.show_finances && _local_player != 0xff) {
if (_patches.show_finances && _local_player != OWNER_SPECTATOR) {
ShowPlayerFinances(_local_player);
p = DEREF_PLAYER(_local_player);
if (p->num_valid_stat_ent > 5 && p->old_economy[0].performance_history < p->old_economy[4].performance_history) {
@@ -632,7 +632,7 @@ int32 CmdPlayerCtrl(int x, int y, uint32 flags, uint32 p1, uint32 p2)
switch(p1 & 0xff) {
case 0: // make new player
p = DoStartupNewPlayer(false);
if (_local_player == 0xff && p != NULL) {
if (_local_player == OWNER_SPECTATOR && p != NULL) {
_local_player = p->index;
MarkWholeScreenDirty();
}