Hi
I'm using CB10.5 and discovered that the Irrlicht wizard for creating new Irrlicht projects is using an old template.
With the actual Irrlicht lib the following line (71) should be changed:
old:
IrrlichtDevice *device = createDevice(EDT_SOFTWARE, dimension2d<s32>(640, 480), 16, false, false, false, 0);
new:
IrrlichtDevice *device = createDevice(EDT_SOFTWARE, dimension2d<u32>(640, 480), 16, false, false, false, 0);
Somebody should fix that.