diff options
Diffstat (limited to 'core/sync_windows.odin')
| -rw-r--r-- | core/sync_windows.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sync_windows.odin b/core/sync_windows.odin index 2035fc475..0b7477bc2 100644 --- a/core/sync_windows.odin +++ b/core/sync_windows.odin @@ -17,7 +17,7 @@ Mutex :: struct { */ Mutex :: struct { - _critical_section: win32.CriticalSection; + _critical_section: win32.Critical_Section; } current_thread_id :: proc() -> i32 { |