glfw: correct import references
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
c6e8bce219
commit
40e1520372
7 changed files with 60 additions and 60 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue