summaryrefslogtreecommitdiff
path: root/src/script/squirrel.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-09-06 20:22:59 +0000
committerrubidium <rubidium@openttd.org>2014-09-06 20:22:59 +0000
commitb5f5e88d57621d686906a69f419c9809398befe7 (patch)
tree51eed15623f11c86479b098ee5dbc7e3a1c408f9 /src/script/squirrel.cpp
parent9b0c01e9bf1c9ae971ce931bfb9d73f800388fd2 (diff)
downloadopenttd-b5f5e88d57621d686906a69f419c9809398befe7.tar.xz
(svn r26782) -Fix (r26781): was in the wrong folder when commiting
Diffstat (limited to 'src/script/squirrel.cpp')
-rw-r--r--src/script/squirrel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/squirrel.cpp b/src/script/squirrel.cpp
index 22e5354b6..7697edd24 100644
--- a/src/script/squirrel.cpp
+++ b/src/script/squirrel.cpp
@@ -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);