fix typo in comment.

This commit is contained in:
Shpoike 2021-04-27 19:50:37 +01:00
parent f918b3c9c8
commit e3b37db8bc
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ void *Sys_CreateMutexNamed(char *file, int line);
#endif
#else
#ifdef __GNUC__ //gcc complains about if (true) when these are maros. msvc complains about static not being called in headers. gah.
#ifdef __GNUC__ //gcc complains about if (true) when these are macros. msvc complains about static not being called in headers. gah.
static inline qboolean Sys_MutexStub(void) {return qtrue;}
static inline void *Sys_CreateMutex(void) {return NULL;}
#define Sys_IsMainThread() Sys_MutexStub()