Fixed invalid parameter
parent
4b1b20ec5f
commit
2e7bf2a7a6
|
@ -329,7 +329,7 @@ std::string LoadSource(const std::string& path)
|
||||||
if (file == nullptr)
|
if (file == nullptr)
|
||||||
{
|
{
|
||||||
GetLogger()->Error("Cannot read shader source file\n");
|
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 {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue