Adjust sound! macro

This commit is contained in:
oakes
2014-01-24 00:34:52 -05:00
parent 076c0142cd
commit 9b808100ef

View File

@@ -136,4 +136,5 @@
(defmacro sound!
"Calls a single method on a `sound`"
[object k & options]
`(u/call! ^Sound ~object ~k ~@options))
`(let [^Sound object# ~object]
(u/call! object# ~k ~@options)))