aboutsummaryrefslogtreecommitdiff
path: root/tests/glfw.amal
diff options
context:
space:
mode:
Diffstat (limited to 'tests/glfw.amal')
-rwxr-xr-x[-rw-r--r--]tests/glfw.amal4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/glfw.amal b/tests/glfw.amal
index 37608fc..7c4a8ab 100644..100755
--- a/tests/glfw.amal
+++ b/tests/glfw.amal
@@ -7,9 +7,9 @@ extern const glfwWindowShouldClose: fn(window: u64) i32;
const main = fn {
glfwInit();
- const window = glfwCreateWindow(50i32, 50i32, "hello, world", 0, 0);
+ const window = glfwCreateWindow(50i32, 50i32, "hello, world", 0u64, 0u64);
while glfwWindowShouldClose(window) == 0 {
}
glfwTerminate();
-} \ No newline at end of file
+}