diff gamelib/scenes/manual.py @ 636:2748d3afcae5 pyntnclick

Excise albow. Really.
author Stefano Rivera <stefano@rivera.za.net>
date Sun, 12 Feb 2012 00:10:17 +0200
parents 3ce19d33b51f
children 9a61cf88e6e8
line wrap: on
line diff
--- a/gamelib/scenes/manual.py	Sun Feb 12 00:01:03 2012 +0200
+++ b/gamelib/scenes/manual.py	Sun Feb 12 00:10:17 2012 +0200
@@ -1,7 +1,5 @@
 """The inside of the maintenance manual."""
 
-from albow.music import change_playlist
-
 from pyntnclick.state import Scene, Thing
 from pyntnclick.scenewidgets import InteractNoImage, InteractImage
 
@@ -113,10 +111,10 @@
 
     def enter(self):
         self._scene_playlist = self.sound.get_current_playlist()
-        change_playlist(None)
+        self.sound.change_playlist(None)
 
     def leave(self):
-        change_playlist(self._scene_playlist)
+        self.sound.change_playlist(self._scene_playlist)
 
 
 SCENES = []