mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
don't discard const qualifier needlessly
svn-id: r44854
This commit is contained in:
parent
d0876b06ed
commit
8b3ff337be
@ -172,7 +172,7 @@ static void render_char(byte *dest, byte *src, int width, int line_width, int li
|
||||
}
|
||||
|
||||
gfx_pixmap_t *gfxr_draw_font(gfx_bitmap_font_t *font, const char *stext, int characters, PaletteEntry *fg0, PaletteEntry *fg1, PaletteEntry *bg) {
|
||||
const byte *text = (byte *)stext;
|
||||
const byte *text = (const byte *)stext;
|
||||
int height = font->height;
|
||||
int width = 0;
|
||||
gfx_pixmap_t *pxm;
|
||||
|
Loading…
Reference in New Issue
Block a user