Skip to content

Commit

Permalink
fix typo in mat4.mul
Browse files Browse the repository at this point in the history
  • Loading branch information
shakesoda committed May 7, 2022
1 parent cf707cb commit eb209f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/mat4.lua
Expand Up @@ -365,7 +365,7 @@ function mat4.mul(out, a, b)
elseif #a == 1 then
-- only one matrix, just copy
for i = 1, 16 do
out[i] = a[i]
out[i] = a[1][i]
end
else
local ma = a[1]
Expand Down

0 comments on commit eb209f6

Please sign in to comment.