diff options
| author | gingerBill <bill@gingerbill.org> | 2018-02-25 12:14:35 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-02-25 12:14:35 +0000 |
| commit | 3b5932699cce49504fc555d32f944de48d30dd35 (patch) | |
| tree | cf6f573a6779d05aa4fe3a5d86e958593e4835ca | |
| parent | bada81159da0f845e45d7774e08ae0f9207c67a2 (diff) | |
Fix #assert in opengl.odin
| -rw-r--r-- | core/opengl.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/opengl.odin b/core/opengl.odin index ff5603a8f..3fa63ec32 100644 --- a/core/opengl.odin +++ b/core/opengl.odin @@ -8,7 +8,7 @@ when ODIN_OS == "windows" { export "core:opengl_constants.odin" -(ODIN_OS != "osx"); +#assert(ODIN_OS != "osx"); @(default_calling_convention="c", link_prefix="gl") foreign lib { |