diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-04 07:32:55 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-04 07:32:55 -0400 |
commit | c74d256646cf0c438feee2ac703cc1f34b47b8ec (patch) | |
tree | af9ec2469bce263c53ce6adc8d9385750eab3ead /src/common.cpp | |
parent | 260c617673ab332bf2a3531db45bd264668d1b98 (diff) | |
parent | a45daeda3633bdf25267a0186b39618269dca970 (diff) |
Merge branch 'master' of https://github.com/tcsullivan/gamedev
Diffstat (limited to 'src/common.cpp')
-rw-r--r-- | src/common.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common.cpp b/src/common.cpp index 10ff64e..50678f1 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -20,6 +20,14 @@ unsigned int millis(void){ #endif // __WIN32__ +void C(std::string m){ + #ifdef SEGFAULT + std::cout << m << std::endl; + #else + (void)m; + #endif +} + void DEBUG_prints(const char* file, int line, const char *s,...){ va_list args; printf("%s:%d: ",file,line); |