diff options
| author | gingerBill <bill@gingerbill.org> | 2017-12-09 18:11:36 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2017-12-09 18:11:36 +0000 |
| commit | 3703ca4df47134e0c274cf5096d14c9323331ff0 (patch) | |
| tree | a01aab633bf3d25aba33357cb8d181537e9c841b /examples | |
| parent | 41b8281c7355eea7c4a2022027769df8a519ae7a (diff) | |
Explicit procedure group; Remove implicit procedure overloading
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/game.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/game.odin b/examples/game.odin index 464c9d7d2..b0f4c990c 100644 --- a/examples/game.odin +++ b/examples/game.odin @@ -1,5 +1,5 @@ -import win32 "core:sys/windows.odin" when ODIN_OS == "windows"; -import wgl "core:sys/wgl.odin" when ODIN_OS == "windows"; +when ODIN_OS == "windows" do import win32 "core:sys/windows.odin"; +when ODIN_OS == "windows" import wgl "core:sys/wgl.odin"; import "core:fmt.odin"; import "core:math.odin"; import "core:os.odin"; |