fix typo in mat4.mul

This commit is contained in:
Colby Klein 2022-05-07 15:53:01 -07:00
parent cf707cb6af
commit eb209f6d91

View File

@ -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]