Hello people! I appear to have some link errors, and assume, since all my.libs are correctly linked, that there are missing files from my project. I have the following. SDL SDLmain Libbz2 Regex PthreadVC2
Remove all the inlines in the .c files. For example, replace:
#if defined(WIN32) && !defined(__GNUC__) _inline void part_change_type(int i, int x, int y, int t) #else inline void part_change_type(int i, int x, int y, int t) #endif
with: void part_change_type(int i, int x, int y, int t)
Also, add this to defines.h:
#if defined(WIN32) && !defined(__GNUC__) #define fmin min #define fminf min #define fmax max #define fmaxf max #endif