From e1f04b89c3e39a945c61caa4a80b79a83ad19e90 Mon Sep 17 00:00:00 2001 From: truebrain Date: Wed, 21 Dec 2011 12:28:02 +0000 Subject: (svn r23648) -Revert (r23646): partial revert; nobody has to know about my local changes and attempts --- src/script/api/script_list.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/script/api/script_list.cpp') diff --git a/src/script/api/script_list.cpp b/src/script/api/script_list.cpp index f6f2f4596..14d400bcb 100644 --- a/src/script/api/script_list.cpp +++ b/src/script/api/script_list.cpp @@ -818,15 +818,13 @@ SQInteger ScriptList::Valuate(HSQUIRRELVM vm) sq_push(vm, 2); for (ScriptListMap::iterator iter = this->items.begin(); iter != this->items.end(); iter++) { - int key = (*iter).first; - /* Check for changing of items. */ int previous_modification_count = this->modifications; /* Push the root table as instance object, this is what squirrel does for meta-functions. */ sq_pushroottable(vm); /* Push all arguments for the valuator function. */ - sq_pushinteger(vm, key); + sq_pushinteger(vm, (*iter).first); for (int i = 0; i < nparam - 1; i++) { sq_push(vm, i + 3); } @@ -870,7 +868,7 @@ SQInteger ScriptList::Valuate(HSQUIRRELVM vm) return sq_throwerror(vm, _SC("modifying valuated list outside of valuator function")); } - this->SetValue(key, value); + this->SetValue((*iter).first, value); /* Pop the return value. */ sq_poptop(vm); -- cgit v1.2.3-54-g00ecf