show some missing wide 1's (bug #2269)

This commit is contained in:
Chris Taylor 2005-07-29 03:51:59 +00:00
parent 224514dff2
commit 9a9e644d17
2 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,4 @@
/* $Id: font.c,v 1.36 2005-01-24 19:12:28 schaffner Exp $ */
/* $Id: font.c,v 1.37 2005-07-29 03:51:28 chris Exp $ */
/*
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
@ -354,7 +354,8 @@ int gr_internal_string0m(int x, int y, char *s )
letter = (unsigned char)*text_ptr-FMINCHAR;
if (!INFONT(letter) || *text_ptr<=0x06) { //not in font, draw as space
if (!INFONT(letter) || (unsigned char) *text_ptr <= 0x06) //not in font, draw as space
{
CHECK_EMBEDDED_COLORS() else{
VideoOffset += spacing;
text_ptr++;

View file

@ -1,3 +1,7 @@
2005-07-29 Chris Taylor <chris@icculus.org>
* 2d/font.c: show some missing wide 1's (bug #2269)
2005-07-28 Chris Taylor <chris@icculus.org>
* main/gauges.c: show gauges in SDL (help fix bug #2267)