Irrlicht & Debugging

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
corran
Posts: 8
Joined: Wed Jan 12, 2005 6:39 pm

Irrlicht & Debugging

Post by corran »

For some reason Irrlicht is not playing nice with the debugger I use
i have version 10 and conple with DevCpp
in both the DevCpp debugger and the insight debugger the program crashes on the createdevice call
however when i run my program without a debugger it runs and the create device call works but it crashes later because on an error in my code which i can't find bcause the damn debugger dosen't work
any one else ever have this problem before? (and know what i can do?)
don_Pedro
Posts: 84
Joined: Fri Jun 10, 2005 1:34 pm
Location: Poland
Contact:

Post by don_Pedro »

There's probably everything right with your debugger, it's its job to find all problems, and it seems you have problem arround createDevice. When you run without debugger there's no so much control and your program runs, but it doesn't mean there's no bug. And actually, as you see, it exists somewhere, and perhaps have something common with the createDevice, just look arround.
corran
Posts: 8
Joined: Wed Jan 12, 2005 6:39 pm

Post by corran »

there is no bug at the createdevice call
i know that it is later in the program
createdevice simply kills my debugger and i cant get to the bugs
Post Reply