Mercurial > touhou
changeset 581:cb8a443bc046
Fix a compilation issue on Cython 0.20.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sun, 07 Sep 2014 13:26:41 +0200 |
parents | 8a8c2e519637 |
children | 6e79756b7f42 |
files | pytouhou/ui/opengl/texture.pyx |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)