- Fix GCC warning.

SVN r1534 (trunk)
This commit is contained in:
Randy Heit 2009-04-09 02:00:58 +00:00
parent c601426248
commit 6a75a5ac94
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ class FBlockThingsIterator
int NumFixedHash;
TArray<HashEntry> DynHash;
HashEntry *GetHashEntry(int i) { return i < countof(FixedHash) ? &FixedHash[i] : &DynHash[i - countof(FixedHash)]; }
HashEntry *GetHashEntry(int i) { return i < (int)countof(FixedHash) ? &FixedHash[i] : &DynHash[i - countof(FixedHash)]; }
void StartBlock(int x, int y);
void SwitchBlock(int x, int y);