I've found 2 little key features in engine source. Might be it is not expected to be built on MSVC2008 Express, but with these fixes it works.
1-st: file "zone.c" line 25: under Windows MSVC2008 Express there is no such file "stdint.h", I've added a #if / #endif section, after this it works well
2-d: if MEMPARANOIA is disabled, then in the same file "zone.c" line 673 should be either taken in #if MEMPARANOIA / #endif borders.
- Code: Select all
#if MEMPARANOIA
sentinel_seed = rand();
#endif // MEMPARANOIA