News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

Irrlicht wizard

Started by PizzaNapoli, January 22, 2011, 04:13:13 PM

Previous topic - Next topic

PizzaNapoli

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.