glfw: correct import references

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2021-07-17 20:19:46 -07:00
parent c6e8bce219
commit 40e1520372
7 changed files with 60 additions and 60 deletions

View file

@ -3,10 +3,10 @@
const c = @import("c.zig").c;
/// The key or mouse button was released.
pub const release = C.GLFW_RELEASE;
pub const release = c.GLFW_RELEASE;
/// The key or mouse button was pressed.
pub const press = C.GLFW_RELEASE;
pub const press = c.GLFW_RELEASE;
/// The key was held down until it repeated.
pub const repeat = C.GLFW_REPEAT;
pub const repeat = c.GLFW_REPEAT;