# HG changeset patch # User Emmanuel Gil Peyrot # Date 1410089201 -7200 # Node ID cb8a443bc0466b003330edf50cd1064ab63181ab # Parent 8a8c2e5196372396e83fb89cb117478ce03804b4 Fix a compilation issue on Cython 0.20. diff --git a/pytouhou/ui/opengl/texture.pyx b/pytouhou/ui/opengl/texture.pyx --- a/pytouhou/ui/opengl/texture.pyx +++ b/pytouhou/ui/opengl/texture.pyx @@ -40,7 +40,7 @@ cdef class TextureManager: cdef void load(self, dict anms): glPushDebugGroup(GL_DEBUG_SOURCE_APPLICATION, 0, -1, "Texture loading") for anm in sorted(anms.values(), key=is_ascii): - glPushDebugGroup(GL_DEBUG_SOURCE_APPLICATION, 0, -1, "Loading textures from ANM %s" % anm) + glPushDebugGroup(GL_DEBUG_SOURCE_APPLICATION, 0, -1, "Loading textures from ANM") for entry in anm: if entry.texture is None: texture = decode_png(self.loader, entry.first_name, entry.secondary_name)