I compile by exemple the project for dysplaying Quake III map and when i compile it is errorless but when i execute the exe there is an eror
I hav put irrlicht.dll in my folder and the media but it is the same help me plz
problem with Irrlicht
Search for this line of code,
IrrlichtDevice *device =
createDevice(video::DT_DIRECTX8,
core::dimension2d<s32>(640, 480), 16, false, false, &receiver);
and change it to,
IrrlichtDevice *device =
createDevice(video::DT_OPENGL,
core::dimension2d<s32>(640, 480), 16, false, false, &receiver);
Well dunno if that will help you but thats what your error is telling me :p
IrrlichtDevice *device =
createDevice(video::DT_DIRECTX8,
core::dimension2d<s32>(640, 480), 16, false, false, &receiver);
and change it to,
IrrlichtDevice *device =
createDevice(video::DT_OPENGL,
core::dimension2d<s32>(640, 480), 16, false, false, &receiver);
Well dunno if that will help you but thats what your error is telling me :p