Illegal memory access then integrating ODE

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
mitras1
Posts: 26
Joined: Mon Jan 29, 2024 8:02 am

Illegal memory access then integrating ODE

Post by mitras1 »

I was trying to add physics to my game and then I call dWorldStep/dWorldQuickStep it crashes

OS: windows
Compiler: MinGW
IDE: CodeBlocks
CuteAlien
Admin
Posts: 9734
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Re: Illegal memory access then integrating ODE

Post by CuteAlien »

Set a breakpoint and look at the value of the variables?
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
mitras1
Posts: 26
Joined: Mon Jan 29, 2024 8:02 am

Re: Illegal memory access then integrating ODE

Post by mitras1 »

CuteAlien wrote: Mon Oct 14, 2024 9:39 pm Set a breakpoint and look at the value of the variables?
It gives me 'No symbol table loaded'
CuteAlien
Admin
Posts: 9734
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Re: Illegal memory access then integrating ODE

Post by CuteAlien »

Compile in debug. I mean chances are very high this is problem in your code. But nothing anyone can help with without a real example. There's like a million things that can go wrong - this is not enough information to even start guessing.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
mitras1
Posts: 26
Joined: Mon Jan 29, 2024 8:02 am

Re: Illegal memory access then integrating ODE

Post by mitras1 »

CuteAlien wrote: Tue Oct 15, 2024 10:09 am Compile in debug.
I compiled in debug
Post Reply