mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 22:53:34 +00:00
fixing error message
This commit is contained in:
@@ -392,12 +392,12 @@ namespace mlx
|
||||
|
||||
if(!std::filesystem::exists(file))
|
||||
{
|
||||
Error("Image: file not found %", file);
|
||||
Error("Image loader: file not found %", file);
|
||||
return nullptr;
|
||||
}
|
||||
if(stbi_is_hdr(filename.c_str()))
|
||||
{
|
||||
Error("Texture: unsupported image format from % (HDR image)", file);
|
||||
Error("Image loader: unsupported image format from % (HDR image)", file);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user