From a7bbe5cc18fe5b24f5d97d4acce164998d8d5517 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 4 Apr 2016 14:54:21 -0400 Subject: physics, removed extra couts --- src/common.cpp | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) (limited to 'src/common.cpp') diff --git a/src/common.cpp b/src/common.cpp index 50678f1..b4258f6 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -20,14 +20,6 @@ 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); @@ -58,10 +50,10 @@ void safeSetColorA(int r,int g,int b,int a){ glColor4ub(r,g,b,a); } -int getdir(const char *dir, std::vector &files){ +int getdir(std::string dir, std::vector &files){ DIR *dp; struct dirent *dirp; - if(!(dp = opendir(dir))){ + if(!(dp = opendir(dir.c_str()))){ std::cout <<"Error ("<