Hidden indentation misalignment fixed.

This commit is contained in:
Thompson Lee 2016-07-31 01:27:10 -04:00
parent 934e0fd05a
commit ef913eb9a4

View File

@ -121,13 +121,13 @@ bool Mtx_Inverse(C3D_Mtx* out)
out->m[8] * out->m[2] * out->m[5];
det = 1.0 / det;
for (i = 0; i < 16; i++)
out->m[i] = inv[i] * det;
return true;
}
}
return false;
}