Fix link files usage to prevent issues with git changes status

This commit is contained in:
Wojtek Figat
2021-03-12 09:30:31 +01:00
parent 544a043c56
commit c18e5f522a
11 changed files with 24 additions and 13 deletions

View File

@@ -508,8 +508,9 @@ bool MCore::LoadEngine()
Thread::ThreadExiting.Bind<OnThreadExiting>();
// Info
const String buildInfo(mono_get_runtime_build_info());
LOG(Info, "Mono version: {0}", buildInfo);
char* buildInfo = mono_get_runtime_build_info();
LOG(Info, "Mono version: {0}", String(buildInfo));
mono_free(buildInfo);
return false;
}