Core/ResourceLoader: Fix format error

This commit is contained in:
SirLynix 2023-11-02 08:27:37 +01:00
parent a803a9cff4
commit 8fb53f467b
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ namespace Nz
if (found)
NazaraError("failed to load resource from file \"{0}}\": all loaders failed", filePath);
else
NazaraError("failed to load resource from file \"{0}}\": no loader found for extension \"{1}\"", ext);
NazaraError("failed to load resource from file \"{0}}\": no loader found for extension \"{1}\"", filePath, ext);
return nullptr;
}