From 0c0587624084b13eb2e6c6719e7f6a1248c8c7da Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 25 Jul 2002 23:22:29 +0000 Subject: [PATCH] Whoops; the pthread-disabling condition was flipped. Fixed. --- platform/unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/unix.c b/platform/unix.c index 0a75e724..ab84395d 100644 --- a/platform/unix.c +++ b/platform/unix.c @@ -280,7 +280,7 @@ char *__PHYSFS_platformRealPath(const char *path) } /* __PHYSFS_platformRealPath */ -#if (!defined PHYSFS_NO_PTHREADS_SUPPORT) +#if (defined PHYSFS_NO_PTHREADS_SUPPORT) PHYSFS_uint64 __PHYSFS_platformGetThreadID(void) { return(0x0001); } void *__PHYSFS_platformCreateMutex(void) { return((void *) 0x0001); }