(svn r26782) -Fix (r26781): was in the wrong folder when commiting

This commit is contained in:
rubidium
2014-09-06 20:22:59 +00:00
parent e8a72f8234
commit 4506858a83
3 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ void Squirrel::CompileError(HSQUIRRELVM vm, const SQChar *desc, const SQChar *so
{
SQChar buf[1024];
seprintf(buf, lastof(buf), "Error %s:" SQ_PRINTF64 "/" SQ_PRINTF64 ": %s", source, line, column, desc);
seprintf(buf, lastof(buf), "Error %s:" OTTD_PRINTF64 "/" OTTD_PRINTF64 ": %s", source, line, column, desc);
/* Check if we have a custom print function */
Squirrel *engine = (Squirrel *)sq_getforeignptr(vm);