]> gitweb.factorcode.org Git - factor.git/commitdiff
game.debug.tests: fix half-changed accessor names (reported by sf17k)
authorJoe Groff <arcata@gmail.com>
Mon, 11 Apr 2011 18:50:28 +0000 (11:50 -0700)
committerJoe Groff <arcata@gmail.com>
Mon, 11 Apr 2011 18:50:28 +0000 (11:50 -0700)
extra/game/debug/tests/tests.factor

index 2a70f55d8ad500dbe294b56f690a428ec3bb8eae..b6bcacc780e497428e363e591b466f38c76090d8 100644 (file)
@@ -41,14 +41,14 @@ IN: game.debug.tests
     COLOR: purple { 5 5 } world dim>> draw-text
     world [ 1 + ] change-frame# drop ;
 
-TUPLE: tests-world < wasd-world frame-number ;
+TUPLE: tests-world < wasd-world frame# ;
 M: tests-world draw-world* draw-debug-tests ;
 M: tests-world wasd-movement-speed drop 1/16. ;
 M: tests-world wasd-near-plane drop 1/32. ;
 M: tests-world wasd-far-plane drop 1024.0 ;
 M: tests-world begin-game-world
     init-gpu
-    0 >>frame-number
+    0 >>frame#
     { 0.0 0.0 2.0 } 0 0 set-wasd-view drop ;
 
 GAME: run-tests {