From 3f5bad938a3fcb601ad41924a4707476b8b87241 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Tue, 21 Dec 2010 18:08:24 +0200 Subject: organizing stuff. --- src/utility.h | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'src/utility.h') diff --git a/src/utility.h b/src/utility.h index bfee15e61..484b5828b 100644 --- a/src/utility.h +++ b/src/utility.h @@ -28,18 +28,11 @@ with this program; if not, write to the Free Software Foundation, Inc., #include #include -#ifdef _WIN32 - #include - #define sleep_ms(x) Sleep(x) -#else - #include - #define sleep_ms(x) usleep(x*1000) -#endif - #include "common_irrlicht.h" #include "debug.h" #include "strfnd.h" #include "exceptions.h" +#include "porting.h" extern const v3s16 g_26dirs[26]; @@ -404,7 +397,7 @@ class IrrlichtWrapper; class TimeTaker { public: - TimeTaker(const char *name, IrrlichtWrapper *irrlicht, u32 *result=NULL); + TimeTaker(const char *name, u32 *result=NULL); ~TimeTaker() { @@ -415,7 +408,6 @@ public: private: const char *m_name; - IrrlichtWrapper *m_irrlicht; u32 m_time1; bool m_running; u32 *m_result; -- cgit v1.2.3