]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/game/input/input.factor
factor: more top level forms.
[factor.git] / basis / game / input / input.factor
index 3f92333cc5c719cf5c81392bc08a7e81af0f5a20..fc52ab80628f0c87932aad42cb3b6709b9873be9 100644 (file)
@@ -106,9 +106,6 @@ SYMBOLS: pressed released ;
 : buttons-delta ( old-buttons new-buttons -- delta )
     { } buttons-delta-as ; inline
 
-{
-    { [ os windows? ] [ "game.input.dinput" require ] }
-    { [ os macosx? ] [ "game.input.iokit" require ] }
-    { [ os linux? ] [ "game.input.gtk" require ] }
-    [ ]
-} cond
+USE-WINDOWS: game.input.dinput
+USE-MACOSX: game.input.iokit
+USE-LINUX: game.input.gtk
\ No newline at end of file