Browse Source

* REAL fix

tags/v0.99.beta14
Jean-Yves Lamoureux jylam 18 years ago
parent
commit
1c3760ac41
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      caca/driver_gl.c

+ 2
- 2
caca/driver_gl.c View File

@@ -67,7 +67,7 @@ struct driver_private
cucul_font_t *f;
float font_width, font_height;
float incx, incy;
unsigned long int const *blocks;
uint32_t const *blocks;
int *txid;
unsigned char close;
unsigned char bit;
@@ -498,7 +498,7 @@ static void gl_compute_font(caca_display_t *dp)
int i, b, w, h, x, y;

/* Count how many glyphs this font has */
dp->drv.p->blocks = cucul_get_font_blocks(dp->drv.p->f);
dp->drv.p->blocks = (uint32_t)cucul_get_font_blocks(dp->drv.p->f);

for(b = 0, i = 0; dp->drv.p->blocks[i + 1]; i += 2)
b += (int)(dp->drv.p->blocks[i + 1] - dp->drv.p->blocks[i]);


Loading…
Cancel
Save