diff options
| author | gingerBill <bill@gingerbill.org> | 2018-07-01 18:31:31 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-07-01 18:31:31 +0100 |
| commit | c0ca4d4635ebdc280278f483980365069380a06e (patch) | |
| tree | bcb2c0d44df2fcb1415bc908a9d235af28a7c2a2 | |
| parent | efe4b71bae30f3430131a238594041ce55f1911c (diff) | |
Uncomment code
| -rw-r--r-- | src/gb/gb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gb/gb.h b/src/gb/gb.h index 19bff5a5a..d52b02d91 100644 --- a/src/gb/gb.h +++ b/src/gb/gb.h @@ -4644,7 +4644,7 @@ gb_inline b32 gb_mutex_try_lock(gbMutex *m) { gb_inline void gb_mutex_unlock(gbMutex *m) { #if defined(GB_SYSTEM_WINDOWS) - // LeaveCriticalSection(&m->win32_critical_section); + LeaveCriticalSection(&m->win32_critical_section); #else // IMPORTANT TODO HACK(bill): Enable this // pthread_mutex_unlock(&m->pthread_mutex); |