diff options
author | sanine-a <sanine.not@pm.me> | 2020-11-29 01:18:34 -0600 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2020-11-29 01:18:34 -0600 |
commit | bb01e4d5967205fd95be5c0d5bfa105a22764e17 (patch) | |
tree | 84d5e00e44f3f07842641ab0b213da3b415ecc33 /src/honey.c | |
parent | b97f172e948872cfe1bf030f95ff50e5d0b2a1bc (diff) |
begin refactor of glm functions and basic argument parsing
Diffstat (limited to 'src/honey.c')
-rw-r--r-- | src/honey.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/honey.c b/src/honey.c index 4ffb83f..673cd49 100644 --- a/src/honey.c +++ b/src/honey.c @@ -122,8 +122,8 @@ bool honey_setup(lua_State** L) honey_setup_input(*L); lua_setfield(*L, -2, "input"); - honey_setup_cglm(*L); - lua_setfield(*L, -2, "cglm"); + honey_setup_glm(*L); + lua_setfield(*L, -2, "glm"); honey_setup_shader(*L); lua_setfield(*L, -2, "shader"); |