[fixed] error in IrrCompileConfig.h...

You discovered a bug in the engine, and you are sure that it is not a problem of your code? Just post it in here. Please read the bug posting guidelines first.
Post Reply
lab_zj
Posts: 26
Joined: Wed May 21, 2008 3:25 am

[fixed] error in IrrCompileConfig.h...

Post by lab_zj »

In lastest svn version of Irrlicht engine, the IrrCompileConfig.h:

#if defined(_MSC_VER) && (_MSC_VER < 1400)
# error "Only Microsoft Visual Studio 7.0 and later are supported."
#endif

should change to:

#if defined(_MSC_VER) && (_MSC_VER < 1300)
# error "Only Microsoft Visual Studio 7.0 and later are supported."
#endif

Because, VC6.0 is 1200, VC7.0 is 1300, VC7.1 is 1310, VC8.0 is 1400 and VC9.0 is 1500.
bitplane
Admin
Posts: 3204
Joined: Mon Mar 28, 2005 3:45 am
Location: England
Contact:

Post by bitplane »

Oops! Changing now, thanks :)
Submit bugs/patches to the tracker!
Need help right now? Visit the chat room
Post Reply