Browse Source

* Ahaha I didn't even check that it compiled properly.

tags/v0.99.beta14
Sam Hocevar sam 19 years ago
parent
commit
7b216060b4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cucul/font.c

+ 1
- 1
cucul/font.c View File

@@ -138,7 +138,7 @@ struct cucul_font *cucul_load_font(void const *data, unsigned int size)
if(size != 8 + f->header.control_size + f->header.data_size
|| (f->header.bpp != 8 && f->header.bpp != 4 &&
f->header.bpp != 2 && f->header.bpp != 1)
|| (flags & 1) == 0)
|| (f->header.flags & 1) == 0)
{
free(f);
return NULL;


Loading…
Cancel
Save