View Single Post
Re: what todo about game dlls who are build in debug mode
Old
  (#3)
Austin
Moderator
 
Austin's Avatar
 
Status: Offline
Posts: 403
Join Date: Nov 2003
Default Re: what todo about game dlls who are build in debug mode - 27-01-2004

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.

Last edited by Austin; 27-01-2004 at 06:27..
  
Reply With Quote