Refact editor UI and logger

This commit is contained in:
Antoine Pilote
2021-06-28 17:24:52 -04:00
parent fcdeff9d99
commit 4f30fb78ff
19 changed files with 358 additions and 281 deletions

View File

@@ -15,6 +15,6 @@ Ref<Font> FontManager::GetFont(const std::string& font)
if (newFont)
return newFont;
Logger::Log("Error: failed to load font " + font);
Logger::Log("Error: failed to load font " + font, CRITICAL);
return nullptr;
}