diff options
author | sanine-a <sanine.not@pm.me> | 2020-10-25 10:43:43 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2020-10-25 10:43:43 -0500 |
commit | 6162a18f445b89400be521fdeeb0d6a812a03c35 (patch) | |
tree | ceac6ed3692d863966408e5991e7075d87a6f7b3 /src/honey.c | |
parent | 9699a814395dd6344c0f2fab1965b8bed30967b2 (diff) |
move honey_window_information to common.h and add mouse movement functions
Diffstat (limited to 'src/honey.c')
-rw-r--r-- | src/honey.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/honey.c b/src/honey.c index 5cf960e..9e8bc45 100644 --- a/src/honey.c +++ b/src/honey.c @@ -72,10 +72,6 @@ bool honey_setup(lua_State** L) lua_setglobal(*L, "honey"); - lua_rawgeti(*L, LUA_REGISTRYINDEX, honey_window_info_ref); - honey_window_information* info = lua_touserdata(*L, -1); - glfwSetKeyCallback(info->window, default_honey_keyboard_callback); - return true; } |