diff pytouhou/ui/opengl/sprite.pxd @ 540:53fa73932e9a

Fix warnings introduced in Cython 0.20, when more than one pointer is defined on the same line.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 10 May 2014 22:20:22 +0200
parents dacdcca59b66
children
line wrap: on
line diff
--- a/pytouhou/ui/opengl/sprite.pxd
+++ b/pytouhou/ui/opengl/sprite.pxd
@@ -1,7 +1,8 @@
 from pytouhou.game.sprite cimport Sprite
 
 cdef struct RenderingData:
-    float pos[12], left, right, bottom, top
+    float pos[12]
+    float left, right, bottom, top
     unsigned char color[4]
     long key