Fixes CCThread.cpp so it is not included for Mac builds.

The Mac platform already has it's own CCThread.mm.
This commit is contained in:
Nat Weiss 2012-09-15 00:37:12 -07:00
parent 64d6d6ed81
commit febafa6e82
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ THE SOFTWARE.
#include "CCThread.h"
// iOS already has a CCThread.mm
#if (CC_TARGET_PLATFORM != CC_PLATFORM_IOS)
// iOS and Mac already has a CCThread.mm
#if (CC_TARGET_PLATFORM != CC_PLATFORM_IOS && CC_TARGET_PLATFORM != CC_PLATFORM_MAC)
NS_CC_BEGIN