Fix assert

This commit is contained in:
Riyyi
2021-01-30 20:22:54 +01:00
parent 1bcbca899d
commit 32c7cc57f4
+1 -1
View File
@@ -69,7 +69,7 @@ namespace Inferno {
} }
} }
ASSERT(elements.empty(), "Font file did not find any columns"); ASSERT(!elements.empty(), "Font file did not find any columns");
return elements; return elements;
} }