Browse Source

Use correct thread type on OSX

James Urquhart 12 years ago
parent
commit
de5b8afb06
1 changed files with 1 additions and 1 deletions
  1. 1 1
      engine/source/platformOSX/osxThread.mm

+ 1 - 1
engine/source/platformOSX/osxThread.mm

@@ -39,7 +39,7 @@ struct PlatformThreadData
     void*                   mRunArg;
     Thread*                 mThread;
     Semaphore               mGateway; // default count is 1
-    U64                     mThreadID;
+    ThreadIdent             mThreadID;
 };
 
 //-----------------------------------------------------------------------------