Merge pull request #1344 from colobot/dev-suppress-fonts-warning

Remove unnecessary warning if there is no fonts.ini file
pyro-refactor
tomangelo 2020-08-17 19:27:59 +02:00 committed by GitHub
commit d2c8888067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ bool CText::Create()
CFontLoader fontLoader;
if (!fontLoader.Init())
{
GetLogger()->Warn("Error on parsing fonts config file: failed to open file\n");
GetLogger()->Debug("Error on parsing fonts config file: failed to open file\n");
}
if (TTF_Init() != 0)
{