Mercurial > touhou
diff pytouhou/game/text.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 | 2276229282fd |
children | b895ed2de71f |
line wrap: on
line diff
--- a/pytouhou/game/text.pxd +++ b/pytouhou/game/text.pxd @@ -65,7 +65,8 @@ cdef class NativeText(Element): cdef bint shadow cdef bytes align #TODO: use a proper enum. cdef unsigned long frame, timeout, duration, start - cdef double to[2], end[2] + cdef double to[2] + cdef double end[2] cdef list gradient cdef Interpolator fade_interpolator, offset_interpolator cdef object texture