From c20d8c678db94638fadbefd5fb4bf1a5e920c65e Mon Sep 17 00:00:00 2001 From: kul Date: Thu, 18 Sep 2014 10:23:40 +0530 Subject: [PATCH] unqote path in texture-atlas macro. --- src/play_clj/g2d.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/play_clj/g2d.clj b/src/play_clj/g2d.clj index f5430d6..91458ad 100644 --- a/src/play_clj/g2d.clj +++ b/src/play_clj/g2d.clj @@ -176,7 +176,7 @@ (texture-atlas \"packed.txt\")" [path & options] - `(let [^TextureAtlas object# (texture-atlas* path)] + `(let [^TextureAtlas object# (texture-atlas* ~path)] (u/calls! object# ~@options) object#))