Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
Fix an enum to use the new name from ImGui
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesWrigley committed Aug 9, 2023
1 parent a005da4 commit eb855e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function init(ctx::Context)
c_set!(io.KeyMap, ImGuiKey_Space, GLFW_KEY_SPACE)
c_set!(io.KeyMap, ImGuiKey_Enter, GLFW_KEY_ENTER)
c_set!(io.KeyMap, ImGuiKey_Escape, GLFW_KEY_ESCAPE)
c_set!(io.KeyMap, ImGuiKey_KeyPadEnter, GLFW_KEY_KP_ENTER)
c_set!(io.KeyMap, ImGuiKey_KeypadEnter, GLFW_KEY_KP_ENTER)
c_set!(io.KeyMap, ImGuiKey_A, GLFW_KEY_A)
c_set!(io.KeyMap, ImGuiKey_C, GLFW_KEY_C)
c_set!(io.KeyMap, ImGuiKey_V, GLFW_KEY_V)
Expand Down

0 comments on commit eb855e8

Please # to comment.