Skip to content

Commit

Permalink
Fix accidental vec3->vec4 change;
Browse files Browse the repository at this point in the history
Oops!  Too many ctrl-a's!
  • Loading branch information
bjornbytes committed Apr 27, 2023
1 parent 4b8ada2 commit f174755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/l_math_vectors.c
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f174755

Please sign in to comment.