From c9ac4bd2f402304cfa5db580dbc4a055d047e4dc Mon Sep 17 00:00:00 2001 From: oakes Date: Sat, 11 Jan 2014 03:35:32 -0500 Subject: [PATCH] Make keyword more idiomatic --- src/play_clj/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/play_clj/core.clj b/src/play_clj/core.clj index 49f2a16..f28bf7a 100644 --- a/src/play_clj/core.clj +++ b/src/play_clj/core.clj @@ -101,7 +101,7 @@ (defn set-screen! [^Game game & screens] (let [add-inputs! (fn [] - (input! :setInputProcessor (InputMultiplexer.)) + (input! :set-input-processor (InputMultiplexer.)) (doseq [screen screens] (add-input! (:input-processor screen)) (add-input! (:gesture-detector screen))))