font_get is unsigned

This commit is contained in:
Laurent Vivier 2007-03-22 16:22:45 +00:00
parent ddddfeffbb
commit 21bec7bfa7
2 changed files with 2 additions and 2 deletions

View File

@ -4618,7 +4618,7 @@ static unsigned char fontdata_8x16[] = {
};
char* font_get(int c)
unsigned char* font_get(int c)
{
return &fontdata_8x16[c * 16];
}

View File

@ -4618,7 +4618,7 @@ static unsigned char fontdata_8x16[] = {
};
char* font_get(int c)
unsigned char* font_get(int c)
{
return &fontdata_8x16[c * 16];
}