Digits, not words.
[naja.git] / naja / scenes / howto.py
index cf6f3549fcf6d66eefd6375bde6b4992eb8259e7..d5261f3404ee9094d74572906cd8b722fde5a9b5 100644 (file)
@@ -26,7 +26,7 @@ class HowtoScene(Scene):
                 "bits to gain points for reasons that are unlikely ever "
                 "to become clear.",
                 "",
-                "You have 8 bits. Four bits control the directions "
+                "You have 8 bits. 4 bits control the directions "
                 "you can move in {NORTH,SOUTH,EAST,WEST}, 3 allow you "
                 "to unlock actions {RED,GREEN,BLUE} and the "
                 "last, the Most Significant Bit {MSB}, makes everything "
@@ -62,7 +62,7 @@ class HowtoScene(Scene):
             box_width=740, view_port=(780, 540)))
 
     def handle_scene_event(self, ev):
-        from naja.scenes.menu import MenuScene
+        from naja.scenes.introduction import IntroductionScene
         if ev.type == pgl.KEYDOWN and ev.key in KEYS.QUIT:
-            SceneChangeEvent.post(MenuScene)
+            SceneChangeEvent.post(IntroductionScene)
             return