Browse Source

Fixed asmjs build.

Branimir Karadžić 10 years ago
parent
commit
c0ae9d671b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/bgfx.cpp

+ 3 - 1
src/bgfx.cpp

@@ -200,7 +200,7 @@ namespace bgfx
 
 	Caps g_caps;
 
-#if !defined(BX_THREAD_LOCAL)
+#if BGFX_CONFIG_MULTITHREADED && !defined(BX_THREAD_LOCAL)
 	class ThreadData
 	{
 		BX_CLASS(ThreadData
@@ -240,6 +240,8 @@ namespace bgfx
 	};
 
 	static ThreadData s_threadIndex(0);
+#elif !BGFX_CONFIG_MULTITHREADED
+	static uint32_t s_threadIndex(0);
 #else
 	static BX_THREAD_LOCAL uint32_t s_threadIndex(0);
 #endif