Mercurial > touhou
diff pytouhou/ui/gamerunner.pyx @ 455:6864a38b2413
Make pytouhou.lib.sdl cimportable, and convert pytouhou.ui.window.* to extension types.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Mon, 02 Sep 2013 22:16:38 +0200 |
parents | 43a8fed9a8d8 |
children | cae1ae9de430 |
line wrap: on
line diff
--- a/pytouhou/ui/gamerunner.pyx +++ b/pytouhou/ui/gamerunner.pyx @@ -12,7 +12,7 @@ ## GNU General Public License for more details. ## -from pytouhou.lib import sdl +from pytouhou.lib cimport sdl from pytouhou.lib.opengl cimport \ (glMatrixMode, glEnable, glDisable, glViewport, glScissor, @@ -179,7 +179,7 @@ class GameRunner(GameRenderer): def render_interface(self): elements = [] interface = self.game.interface - interface.labels['framerate'].set_text('%.2ffps' % self.window.clock.get_fps()) + interface.labels['framerate'].set_text('%.2ffps' % self.window.get_fps()) if self.use_fixed_pipeline: glMatrixMode(GL_MODELVIEW)