fix in graphics.c

This commit is contained in:
p.kosyh 2010-10-31 18:49:03 +00:00
parent b69834cc04
commit 1634213adf

View file

@ -2373,6 +2373,8 @@ static void word_render(struct layout *layout, struct word *word, int x, int y)
fnt_t txt_layout_font(layout_t lay)
{
struct layout *layout = lay;
if (!lay)
return NULL;
return layout->fn;
}