]> gitweb.factorcode.org Git - factor.git/commitdiff
Fix accessors
authorDoug Coleman <doug.coleman@gmail.com>
Tue, 22 Jun 2010 19:10:12 +0000 (14:10 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Tue, 22 Jun 2010 19:10:12 +0000 (14:10 -0500)
extra/game/debug/tests/tests.factor

index 817379bf575fe78e2411953470df129722e0b413..2a70f55d8ad500dbe294b56f690a428ec3bb8eae 100644 (file)
@@ -37,9 +37,9 @@ IN: game.debug.tests
     ] float-array{ } make
     mvp-matrix draw-debug-points
 
-    "Frame: " world frame-number>> number>string append
+    "Frame: " world frame#>> number>string append
     COLOR: purple { 5 5 } world dim>> draw-text
-    world [ 1 + ] change-frame-number drop ;
+    world [ 1 + ] change-frame# drop ;
 
 TUPLE: tests-world < wasd-world frame-number ;
 M: tests-world draw-world* draw-debug-tests ;