diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-03-21 15:43:25 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-21 15:43:25 +0000 |
| commit | 5c9da66595ddae871097b343d1781d55f70fcd95 (patch) | |
| tree | a774203bab50d01e3c5e43d3c4ebe763da0fe92e /tests | |
| parent | 9cbb9d85518c7d3334120b4c22acc4d8812687fe (diff) | |
| parent | 65e68f11f81bb44dd9c81b81f3c5590f113878f7 (diff) | |
Merge pull request #3294 from laytan/update-glfw-from-3.3.8-to-3.4
glfw: update from 3.3.8 to 3.4
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/vendor/glfw/test_vendor_glfw.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/vendor/glfw/test_vendor_glfw.odin b/tests/vendor/glfw/test_vendor_glfw.odin index baf46aa7e..ce55ad7ef 100644 --- a/tests/vendor/glfw/test_vendor_glfw.odin +++ b/tests/vendor/glfw/test_vendor_glfw.odin @@ -6,8 +6,8 @@ import "vendor:glfw" import "core:os" GLFW_MAJOR :: 3 -GLFW_MINOR :: 3 -GLFW_PATCH :: 4 +GLFW_MINOR :: 4 +GLFW_PATCH :: 0 TEST_count := 0 TEST_fail := 0 @@ -46,4 +46,4 @@ main :: proc() { test_glfw :: proc(t: ^testing.T) { major, minor, patch := glfw.GetVersion() expect(t, major == GLFW_MAJOR && minor == GLFW_MINOR, fmt.tprintf("Expected GLFW.GetVersion: %v.%v.%v, got %v.%v.%v instead", GLFW_MAJOR, GLFW_MINOR, GLFW_PATCH, major, minor, patch)) -}
\ No newline at end of file +} |