From 1404f15daaf4db83238540d96829f6bca36b3751 Mon Sep 17 00:00:00 2001 From: Dale Stammen Date: Tue, 14 Oct 2014 14:15:21 -0700 Subject: [PATCH] added check for WinRT and WP8 --- cocos/editor-support/cocostudio/CocosStudioExport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cocos/editor-support/cocostudio/CocosStudioExport.h b/cocos/editor-support/cocostudio/CocosStudioExport.h index ed5d79d622..062566fb64 100644 --- a/cocos/editor-support/cocostudio/CocosStudioExport.h +++ b/cocos/editor-support/cocostudio/CocosStudioExport.h @@ -1,7 +1,7 @@ #ifndef __CCCOCOSSTUDIO_H__ #define __CCCOCOSSTUDIO_H__ -#if defined(WIN32) && defined(_WINDOWS) +#if (defined(WIN32) && defined(_WINDOWS)) || defined(WINRT) || defined(WP8) #ifdef __MINGW32__ #include #endif