Fixed name of global TLS state macro.

This commit is contained in:
Camilla Berglund 2014-04-08 17:35:05 +02:00
parent 1127c0e6e5
commit 1fed6f8abd
3 changed files with 3 additions and 3 deletions

View File

@ -354,7 +354,7 @@ struct _GLFWlibrary
// This is defined in the platform's joystick.h // This is defined in the platform's joystick.h
_GLFW_PLATFORM_LIBRARY_JOYSTICK_STATE; _GLFW_PLATFORM_LIBRARY_JOYSTICK_STATE;
// This is defined in the platform's tls.h // This is defined in the platform's tls.h
_GLFW_PLATFORM_TLS_STATE; _GLFW_PLATFORM_LIBRARY_TLS_STATE;
}; };

View File

@ -30,7 +30,7 @@
#include <pthread.h> #include <pthread.h>
#define _GLFW_PLATFORM_TLS_STATE _GLFWtlsPOSIX posix_tls #define _GLFW_PLATFORM_LIBRARY_TLS_STATE _GLFWtlsPOSIX posix_tls
//======================================================================== //========================================================================

View File

@ -28,7 +28,7 @@
#ifndef _win32_tls_h_ #ifndef _win32_tls_h_
#define _win32_tls_h_ #define _win32_tls_h_
#define _GLFW_PLATFORM_TLS_STATE _GLFWtlsWin32 win32_tls #define _GLFW_PLATFORM_LIBRARY_TLS_STATE _GLFWtlsWin32 win32_tls
//======================================================================== //========================================================================