diff options
author | Yexo <Yexo@openttd.org> | 2009-02-03 21:05:32 +0000 |
---|---|---|
committer | Yexo <Yexo@openttd.org> | 2009-02-03 21:05:32 +0000 |
commit | e628c5360dbd6fe063f379aff9898920f95d340e (patch) | |
tree | f36e34986525f0d476619f1ef5d0dbceb83d4d53 /src | |
parent | 9569bb12f3ee8a5fa8bfb2c2b1de405158ebac2b (diff) | |
download | openttd-e628c5360dbd6fe063f379aff9898920f95d340e.tar.xz |
(svn r15328) -Fix (r15327): Load(data, version) was called instead of Load(version, data).
Diffstat (limited to 'src')
-rw-r--r-- | src/ai/ai_instance.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ai/ai_instance.cpp b/src/ai/ai_instance.cpp index cb1a04171..26d55481b 100644 --- a/src/ai/ai_instance.cpp +++ b/src/ai/ai_instance.cpp @@ -507,7 +507,7 @@ void AIInstance::Save() return; } /* Push the loaded savegame data to the top of the stack. */ - sq_push(vm, -3); + sq_push(vm, -2); _ai_sl_byte = 1; SlObject(NULL, _ai_byte); /* Save the data that was just loaded. */ @@ -623,8 +623,8 @@ void AIInstance::Load(int version) /* First remove the value "false" since we have data to load. */ sq_poptop(vm); - LoadObjects(vm); sq_pushinteger(vm, version); + LoadObjects(vm); sq_pushbool(vm, true); } @@ -655,7 +655,7 @@ void AIInstance::CallLoad() sq_get(vm, -2); /* Push the main instance as "this" object */ sq_pushobject(vm, *this->instance); - /* Push the savegame data and version as arguments */ + /* Push the version data and savegame data as arguments */ sq_push(vm, -5); sq_push(vm, -5); @@ -663,7 +663,7 @@ void AIInstance::CallLoad() * function pointer) from the stack. */ sq_call(vm, 3, SQFalse, SQFalse); - /* Pop 1) The savegame data, 2) the version, 3) the object instance, 4) the function pointer. */ + /* Pop 1) The version, 2) the savegame data, 3) the object instance, 4) the function pointer. */ sq_pop(vm, 4); AIObject::SetAllowDoCommand(true); |