Compiling Irrlicht 4.2.0 with VC .NET 2003

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Haddock
Posts: 15
Joined: Tue Dec 16, 2003 7:19 pm

Compiling Irrlicht 4.2.0 with VC .NET 2003

Post by Haddock »

I have just tried to compile the lastest version of Irrlicht with VC .NET 2003, and I got these errors (debug compile) :

d:\DEV\irrlicht\source\fast_atof.h(68 ) : error C2666: 'pow' : 7 overloads have similar conversions
d:\DEV\irrlicht\source\CCameraMayaSceneNode.cpp(246): error C2666: 'fmod' : 3 overloads have similar conversions

To fix them, I just made these minor changements:

f *= (f32)pow((f32)10, exp); in fast_atof.h
nRotY = (f32)fmod(nRotY, (f32)360.0); in CCameraMayaSceneNode.cpp
Post Reply