From 7e7e9436993e52f677c303ce7081e54a655aabfa Mon Sep 17 00:00:00 2001 From: Ricardo Quesada Date: Mon, 3 Jun 2013 20:45:06 -0700 Subject: [PATCH] compiles on linux and other machines without C99 support --- cocos2dx/platform/platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cocos2dx/platform/platform.h b/cocos2dx/platform/platform.h index a44df85e00..6a77ef454f 100644 --- a/cocos2dx/platform/platform.h +++ b/cocos2dx/platform/platform.h @@ -42,7 +42,7 @@ struct CC_DLL cc_timeval #else long tv_sec; // seconds #endif - int32_t tv_usec; // microSeconds + int tv_usec; // microSeconds }; class CC_DLL CCTime