i have updated irrlicht library to 1.7.1, but i have a problem with the CreateDeviceEx function... in the previous version (1.6) works perfectly, but now doesn't create the device and returns always NULL, even with the default values of SIrrlichtCreationParameters.
this is the code...
Code: Select all
irr::IrrlichtDevice* VideoDevice;
irr::SIrrlichtCreationParameters deviceConfig;
// this always returns me NULL
VideoDevice = irr::createDeviceEx( deviceConfig );
if( VideoDevice ){
printf("It works\n");
}