Asaf
Sleep Deprived
- Joined
- Mar 22, 2010
- Messages
- 1,326
Glad to hear it 
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).

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).