Sibling error in LeaderHeadInfos

Glad to hear it :goodjob:

Those flags were probably there since DannyDaemonic's version, but they are basically optimization instructions for the compiler to make the code run a bit faster.
That's why they're only in Release mode (The /Od in debug mode disables optimizations so the actual running code is as close as possible to the source code for easier debugging).

You can also look here for a full list of flags in the VS2003 C++ compiler (each is a link to a more elaborate description).
 
Back
Top Bottom