(svn r10153) -Fix [FS#869]: vehicles disappear when crossing certain tiles. Fix by B. N. SmatZ!.

This commit is contained in:
rubidium 2007-06-13 23:14:08 +00:00
parent ab6883bc19
commit 991996eb36
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@
#include "group.h"
#include "economy.h"
#define INVALID_COORD (-0x8000)
#define INVALID_COORD (0x7fffffff)
#define GEN_HASH(x, y) ((GB((y), 6, 6) << 6) + GB((x), 7, 6))