From afef22e3e7caeb41d94115bfd000b4cce68e430d Mon Sep 17 00:00:00 2001 From: smatz Date: Sat, 3 Jan 2009 17:11:52 +0000 Subject: (svn r14812) -Codechange: use INVALID_TILE instead of 0 to mark company without HQ --- src/ai/trolly/trolly.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ai/trolly') diff --git a/src/ai/trolly/trolly.cpp b/src/ai/trolly/trolly.cpp index 17918b2ca..c761d8a87 100644 --- a/src/ai/trolly/trolly.cpp +++ b/src/ai/trolly/trolly.cpp @@ -106,7 +106,7 @@ static void AiNew_State_WakeUp(Company *c) { assert(_companies_ainew[c->index].state == AI_STATE_WAKE_UP); // First, check if we have a HQ - if (c->location_of_HQ == 0) { + if (c->location_of_HQ == INVALID_TILE) { // We have no HQ yet, build one on a random place // Random till we found a place for it! // TODO: this should not be on a random place.. -- cgit v1.2.3-54-g00ecf