Fixed invalid parameter

dev
Tomasz Kapuściński 2023-04-15 01:06:58 +02:00
parent 4b1b20ec5f
commit 2e7bf2a7a6
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ std::string LoadSource(const std::string& path)
if (file == nullptr)
{
GetLogger()->Error("Cannot read shader source file\n");
GetLogger()->Error("Missing file \"%s\"\n", path);
GetLogger()->Error("Missing file \"%s\"\n", path.c_str());
return {};
}