(svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts

This commit is contained in:
tron
2006-08-15 07:07:17 +00:00
parent d84a1dcf50
commit 4ad8d1c7a2
7 changed files with 51 additions and 53 deletions

View File

@@ -260,8 +260,8 @@ static void UnInitializeDynamicVariables(void)
CleanPool(&_sign_pool);
CleanPool(&_order_pool);
free(_town_sort);
free(_industry_sort);
free((void*)_town_sort);
free((void*)_industry_sort);
}
static void UnInitializeGame(void)