summaryrefslogtreecommitdiff
path: root/src/script/squirrel.cpp
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2011-11-19 15:50:10 +0000
committertruebrain <truebrain@openttd.org>2011-11-19 15:50:10 +0000
commitb927ae5be96af3711710a7f30cd52c5e5a278e72 (patch)
tree345d31600122d8fbe9ff76a890f1f7a05b0d12ec /src/script/squirrel.cpp
parente9dfd7a8974694dec72f3aeda2e40e125b27062d (diff)
downloadopenttd-b927ae5be96af3711710a7f30cd52c5e5a278e72.tar.xz
(svn r23263) -Documentation: stop naming AI in comments in script/ files; it makes no sense
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 193f4355c..e0f50f1d9 100644
--- a/src/script/squirrel.cpp
+++ b/src/script/squirrel.cpp
@@ -237,7 +237,7 @@ bool Squirrel::CallMethod(HSQOBJECT instance, const char *method_name, HSQOBJECT
sq_pushobject(this->vm, instance);
if (SQ_FAILED(sq_call(this->vm, 1, ret == NULL ? SQFalse : SQTrue, SQTrue, suspend))) return false;
if (ret != NULL) sq_getstackobj(vm, -1, ret);
- /* Reset the top, but don't do so for the AI main function, as we need
+ /* Reset the top, but don't do so for the script main function, as we need
* a correct stack when resuming. */
if (suspend == -1 || !this->IsSuspended()) sq_settop(this->vm, top);
/* Restore the return-value location. */