Fix an extra arg %4 parameter that's unused for 3-wide vectors

This commit is contained in:
baldurk
2017-05-30 15:38:15 +01:00
parent aeab2d085b
commit a79ca2f73c
+1 -1
View File
@@ -859,7 +859,7 @@ static QString RowValuesToString(int cols, el x, el y, el z, el w)
else if(cols == 2)
return QFormatStr("%1, %2").arg(Formatter::Format(x)).arg(Formatter::Format(y));
else if(cols == 3)
return QFormatStr("%1, %2, %3, %4")
return QFormatStr("%1, %2, %3")
.arg(Formatter::Format(x))
.arg(Formatter::Format(y))
.arg(Formatter::Format(z));