Browse Source

Fix assert

master
Riyyi 3 years ago
parent
commit
32c7cc57f4
  1. 2
      inferno/src/inferno/render/font.cpp

2
inferno/src/inferno/render/font.cpp

@ -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;
} }

Loading…
Cancel
Save