Sfoglia il codice sorgente

* Only support version 1 fonts.

tags/v0.99.beta14
Sam Hocevar sam 18 anni fa
parent
commit
99aa400f26
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      cucul/font.c

+ 2
- 1
cucul/font.c Vedi File

@@ -137,7 +137,8 @@ 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))
f->header.bpp != 2 && f->header.bpp != 1)
|| (flags & 1) == 0)
{
free(f);
return NULL;


Caricamento…
Annulla
Salva