What would cause this crash?

Blitz3D Forums/Blitz3D Programming/What would cause this crash?

slenkar(Posted 2005) [#1]
I am making a turnbased game and after about 30 turns the game freezes and I cant even use Ctrl-Alt-Delete to get back to the desktop so I have to restart the PC.
Has anyone had this problem before?


WolRon(Posted 2005) [#2]
Sounds like a massive memory leak.


John Pickford(Posted 2005) [#3]
Have you tried running in debug mode?


fall_x(Posted 2005) [#4]
Sounds like a massive memory leak.

I would also say this is the problem.

Just in case you don't understand this Slenkar, it means that every turn, you create things (types, entities, textures, whatever), but you don't clean them up at the end of the turn, so they pile up in memory.


jfk EO-11110(Posted 2005) [#5]
Try to run it in windowed mode and see of you lose lots of memory each time it runs (use sys monitor or something). Also have a look at AvailVidMem.


slenkar(Posted 2005) [#6]
thanks Ill give it a go,