--- sourceforge.net/trunk/rdesktop/cache.c 2000/09/28 07:04:14 16 +++ sourceforge.net/trunk/rdesktop/cache.c 2000/10/16 07:37:52 20 @@ -85,8 +85,8 @@ } /* Store a glyph in the font cache */ -void cache_put_font(uint8 font, uint32 character, uint16 baseline, - uint16 width, uint16 height, HGLYPH pixmap) +void cache_put_font(uint8 font, uint16 character, uint16 offset, + uint16 baseline, uint16 width, uint16 height, HGLYPH pixmap) { FONTGLYPH *glyph; @@ -97,6 +97,7 @@ if (glyph->pixmap != NULL) ui_destroy_glyph(glyph->pixmap); + glyph->offset = offset; glyph->baseline = baseline; glyph->width = width; glyph->height = height;