From f461149176bed6584415eaa7f426c086b7068187 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Mon, 12 Feb 2007 19:08:08 +0000 Subject: [PATCH] Do what we say we're going to do. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4565 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/io/TypedArray.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/io/TypedArray.as b/src/as/com/threerings/io/TypedArray.as index 6246615bd..d3e15df19 100644 --- a/src/as/com/threerings/io/TypedArray.as +++ b/src/as/com/threerings/io/TypedArray.as @@ -58,7 +58,7 @@ public dynamic class TypedArray extends Array public function addAll (other :Array) :void { for (var ii :int = 0; ii < other.length; ii++) { - this[ii] = other[ii]; + push(other[ii]); } }