From e1757cb504cca0e77a46f1d8b6b13bc371cb4b06 Mon Sep 17 00:00:00 2001 From: oakes Date: Wed, 11 Feb 2015 21:58:25 -0500 Subject: [PATCH] Use different array constructor --- src/play_clj/utils.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/play_clj/utils.clj b/src/play_clj/utils.clj index a6a3281..968fb31 100644 --- a/src/play_clj/utils.clj +++ b/src/play_clj/utils.clj @@ -153,7 +153,7 @@ new object to be created each time a field is set). (defn gdx-array* [clj-arr] - (Array. true (into-array clj-arr) 0 (count clj-arr))) + (Array. (into-array clj-arr))) (defmacro gdx-array "Returns an [Array](http://libgdx.badlogicgames.com/nightlies/docs/api/com/badlogic/gdx/utils/Array.html).