tokamak scene node

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
-=guest=-

tokamak scene node

Post by -=guest=- »

Hi, I just downloaded the tokamak scene node code and I'm having problems compiling it. I get a bunch of errors like this:

main.cpp(37) : error C2872: 's32' : ambiguous symbol
main.cpp(37) : error C2872: 'f32' : ambiguous symbol
...

Any idea what couses this?
Vortex
Posts: 9
Joined: Tue Dec 23, 2003 10:41 pm

Post by Vortex »

I think that s32 and f32 are already defined. See the IrrLicht API docs for more details.
Regards,

Jeroen
keless
Posts: 805
Joined: Mon Dec 15, 2003 10:37 pm
Location: Los Angeles, California, USA

Post by keless »

put irr:: in front of both of them

eg: irr::s32 instead of s32
a screen cap is worth 0x100000 DWORDS
Post Reply