diff options
| author | Karl Zylinski <karl@zylinski.se> | 2023-12-18 11:20:15 +0100 |
|---|---|---|
| committer | Karl Zylinski <karl@zylinski.se> | 2023-12-18 11:20:15 +0100 |
| commit | 9bdd4c73a5761534e7df43c13f042d416e852476 (patch) | |
| tree | 5a581ee51af3a1164d3eca6ea06ebf595d49db73 | |
| parent | 2362be11bf7c6dca9d6c0d7131992833c491bbf7 (diff) | |
Raylib workaround: Fix comment typo
| -rw-r--r-- | vendor/raylib/raylib.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin index 4024f7207..10583c1d9 100644 --- a/vendor/raylib/raylib.odin +++ b/vendor/raylib/raylib.odin @@ -1191,7 +1191,7 @@ foreign lib { IsMouseButtonReleased :: proc(button: MouseButton) -> bool --- // Detect if a mouse button has been released once when VERSION != "5.0" { - #panic("IsMouseButtonUp was broken in Raylib 5.0 but should be fixed in Raylib > 5.1. Remove this panic and the when clause around it and also remove the workaround version of IsMouseButtonUp just after the end of the 'foreign lib {' block ends.") + #panic("IsMouseButtonUp was broken in Raylib 5.0 but should be fixed in Raylib > 5.0. Remove this panic and the when clause around it and also remove the workaround version of IsMouseButtonUp just after the end of the 'foreign lib {' block ends.") IsMouseButtonUp :: proc(button: MouseButton) -> bool --- } |