2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-06-13 03:52:11 +00:00

Fix error messages on error when loading gdt

This commit is contained in:
Jan
2021-03-28 13:07:14 +02:00
parent 41b4fb8c9a
commit 49f19d95c2
2 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -397,7 +397,7 @@ class Linker::Impl
const auto gdtFile = gdtSearchPath->Open(i->second->m_value + ".gdt");
if (!gdtFile.IsOpen())
{
std::cout << "Failed to open file for gdt \"" << i->second << "\"" << std::endl;
std::cout << "Failed to open file for gdt \"" << i->second->m_value << "\"" << std::endl;
return false;
}