Fix invalig logging

This commit is contained in:
auria.mg 2016-04-24 19:37:51 -04:00
parent 8dfa5a3755
commit 5e9f0ba246

View File

@ -93,7 +93,7 @@ namespace Scripting
FILE *f = fopen(script_path.c_str(), "rb");
if (f == NULL)
{
Log::debug("Scripting", "File does not exist : {0}", script_path.c_str());
Log::debug("Scripting", "File does not exist : %s", script_path.c_str());
return "";
}