aboutsummaryrefslogtreecommitdiff
path: root/core/sys
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-01-17 14:02:19 +0000
committergingerBill <bill@gingerbill.org>2018-01-17 14:02:19 +0000
commit4b14d608f49eae90e683cf114bf2a7215a7e857f (patch)
tree0eb7297c3483d1da27383eaac5d3e3373b839a55 /core/sys
parent9428d86f2b5cb1eea5e4f6e50d3ba72a5dc1769b (diff)
Update sys/windows.odin to use `Bool :: b32;` rather than `i32`
Diffstat (limited to 'core/sys')
-rw-r--r--core/sys/windows.odin4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/sys/windows.odin b/core/sys/windows.odin
index 6bff7c2a6..55b131d16 100644
--- a/core/sys/windows.odin
+++ b/core/sys/windows.odin
@@ -26,9 +26,7 @@ Wnd_Proc :: #type proc "c" (Hwnd, u32, Wparam, Lparam) -> Lresult;
Long_Ptr :: int;
-Bool :: i32;
-FALSE: Bool : 0;
-TRUE: Bool : 1;
+Bool :: b32;
Point :: struct {
x, y: i32,