diff pytouhou/ui/sdl/backend.pyx @ 589:0768122da817

Add a frameskip option, and use swap interval to implement it.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 10 Oct 2014 15:59:11 +0200
parents 8f51e34d911c
children 80687f258001
line wrap: on
line diff
--- a/pytouhou/ui/sdl/backend.pyx
+++ b/pytouhou/ui/sdl/backend.pyx
@@ -10,7 +10,7 @@ def init(_):
     from pytouhou.ui.sdl.gamerenderer import GameRenderer
 
 
-def create_window(title, x, y, width, height):
+def create_window(title, x, y, width, height, _):
     window = Window(title, x, y, width, height, sdl.WINDOW_SHOWN)
     window.create_renderer(0)
     return window