Open
Description
Throughout the code you will see stuff like:
#ifdef _DEBUG
if ( godmode || p == pnum)
#else
if ( p == pnum)
There's no way they wrote the code like this. Given that all of the affected debug flags are not present in the release build's memory, it implies they did the following:
#ifdef _DEBUG
int godmode = TRUE;
#else
#define godmode 0
Metadata
Metadata
Assignees
Labels
No labels