1
0
Fork 0
mirror of https://github.com/bjornbytes/lovr.git synced 2024-07-04 13:33:34 +00:00

Fix accidental vec3->vec4 change;

Oops!  Too many ctrl-a's!
This commit is contained in:
bjorn 2023-04-26 17:31:02 -07:00
parent 4b8ada2690
commit f174755fc4

View file

@ -59,7 +59,7 @@ int luax_readvec3(lua_State* L, int index, vec3 v, const char* expected) {
}
}
int luax_readscale(lua_State* L, int index, vec4 v, int components, const char* expected) {
int luax_readscale(lua_State* L, int index, vec3 v, int components, const char* expected) {
switch (lua_type(L, index)) {
case LUA_TNIL:
case LUA_TNONE: