mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2025-02-16 17:35:39 +00:00
Add missing filename to ErrorLog call.
This commit is contained in:
parent
7e025e64a2
commit
78f5056223
|
@ -248,7 +248,7 @@ namespace Util
|
||||||
file.open(filename);
|
file.open(filename);
|
||||||
if (file.fail())
|
if (file.fail())
|
||||||
{
|
{
|
||||||
ErrorLog("Unable to write to '%s'. Configuration will not be saved.");
|
ErrorLog("Unable to write to '%s'. Configuration will not be saved.", filename.c_str());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!header_comment.empty())
|
if (!header_comment.empty())
|
||||||
|
|
Loading…
Reference in a new issue