Added a missing space (between separator and face count in object mode)

This commit is contained in:
2013-02-12 06:24:58 +00:00
parent 86793fec42
commit 63d9ace6b8

View File

@@ -395,7 +395,7 @@ static void stats_string(Scene *scene)
s += sprintf(s, "Verts:%d | Tris:%d", stats->totvert, stats->tottri);
}
else {
s += sprintf(s, "Verts:%d | Faces:%d| Tris:%d | Objects:%d/%d | Lamps:%d/%d%s",
s += sprintf(s, "Verts:%d | Faces:%d | Tris:%d | Objects:%d/%d | Lamps:%d/%d%s",
stats->totvert, stats->totface, stats->tottri, stats->totobjsel, stats->totobj, stats->totlampsel, stats->totlamp, memstr);
}