Debug


(SoM) #1

Hey, I’m making a SP mod for RTCW and I need help removing a crashing bug from my custom DLL code. I can’t get MSVC++ to let me debug the dll (I can’t run the release mode RTCW exes in debug so it won’t let me run the dlls in the debugger) so I need an alternate route (unless someone knows how to make MSVC++ debug the DLL which would be the best).

anyway, does anyone know if there is an option for RTCW that makes it log the console to a file? that way I can at least get an idea of where my DLL is crashing…

Stephen


(damocles) #2

I forget the actual commands, but if you type

/cmdlist log

into the console it should give you the caommnds you need. There might be a cvar too, so do a

/cvarlist log

as well to make sure.

The log file will be rtcw.log (I think) in your main folder.


(SoM) #3

Thanks! I’ll try that.