aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-04-04 07:32:55 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-04-04 07:32:55 -0400
commitc74d256646cf0c438feee2ac703cc1f34b47b8ec (patch)
treeaf9ec2469bce263c53ce6adc8d9385750eab3ead /src/common.cpp
parent260c617673ab332bf2a3531db45bd264668d1b98 (diff)
parenta45daeda3633bdf25267a0186b39618269dca970 (diff)
Merge branch 'master' of https://github.com/tcsullivan/gamedev
Diffstat (limited to 'src/common.cpp')
-rw-r--r--src/common.cpp8
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);