problem with Irrlicht

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
SilverGrom

problem with Irrlicht

Post by SilverGrom »

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
SilverGrom

Post by SilverGrom »

the eror is Directx is not compiled in this dll. Try OpenGL
NecromanX
Posts: 16
Joined: Sat Jan 24, 2004 6:01 pm

Post by NecromanX »

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
Guest

Post by Guest »

u r a god thx very much it is this
Post Reply