View Single Post
Re: what todo about game dlls who are build in debug mode
Old
  (#5)
Rick
Council Member
 
Rick's Avatar
 
Status: Offline
Posts: 690
Join Date: Dec 2003
Location: Holland
Default Re: what todo about game dlls who are build in debug mode - 27-01-2004

Quote:
Originally Posted by Austin
If your code runs fine with a debug build but crashes with a non-debug build this is almost certainly caused by using some variable or memory that has not been initialized.

The debug builds zeros out ALL variables, the release builds do not do this.

It doesn't have to crash in your code either. You can be sending in some initialized struct, variable or memory into a Hl/ game function causing IT to crash.
hey I didn't knew that, thanx
Gonna check this out. And its prolly my code....when I disbled some stuff it didn't crash 9_9. Anyways thanx for the replies.
  
Reply With Quote