libobs/graphics: Remove redundant variable assignment

This commit is contained in:
hwdro 2016-05-26 21:36:44 -07:00 committed by jp9000
parent 3deae76395
commit 017d77b399

View File

@ -231,7 +231,7 @@ void matrix4_scale_i(struct matrix4 *dst, const struct vec3 *v,
bool matrix4_inv(struct matrix4 *dst, const struct matrix4 *m)
{
struct vec4 *dstv = (struct vec4 *)dst;
struct vec4 *dstv;
float det;
float m3x3[9];
int i, j, sign;