diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-04 14:54:21 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-04-04 14:54:21 -0400 |
commit | a7bbe5cc18fe5b24f5d97d4acce164998d8d5517 (patch) | |
tree | 8ef8f0ce2303bbd0aef68c66e7687ec3ca216d30 /src/common.cpp | |
parent | c74d256646cf0c438feee2ac703cc1f34b47b8ec (diff) |
physics, removed extra couts
Diffstat (limited to 'src/common.cpp')
-rw-r--r-- | src/common.cpp | 18 |
1 files changed, 4 insertions, 14 deletions
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<std::string> &files){ +int getdir(std::string dir, std::vector<std::string> &files){ DIR *dp; struct dirent *dirp; - if(!(dp = opendir(dir))){ + if(!(dp = opendir(dir.c_str()))){ std::cout <<"Error ("<<errno<<") opening "<<dir<<std::endl; return errno; } @@ -89,10 +81,8 @@ const char *readFile(const char *path){ unsigned int size; GLchar *buf; - if(!in.is_open()){ - std::cout<<"Error reading file "<<path<<"!"<<std::endl; - abort(); - } + if ( !in.is_open() ) + UserError("Error reading file " + (std::string)path + "!"); in.seekg(0,in.end); buf = new GLchar[(size = in.tellg()) + 1]; |