aboutsummaryrefslogtreecommitdiff
path: root/core/sync_windows.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-08-03 21:21:56 +0100
committerGinger Bill <bill@gingerbill.org>2017-08-03 21:21:56 +0100
commit49d337c83039715fd3100f6ec8a88dff80c08c4b (patch)
treef129486fb80a44dc106a277a576438d0ce344d8c /core/sync_windows.odin
parent294092979e89faa67dc77d2261e9ddafc18b0d0d (diff)
v0.6.2; Use Ada_Case for typesv0.6.2
Diffstat (limited to 'core/sync_windows.odin')
-rw-r--r--core/sync_windows.odin2
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 {