From 9a9e644d17e397f9904f8f75dadbd14ff02f9173 Mon Sep 17 00:00:00 2001 From: Chris Taylor Date: Fri, 29 Jul 2005 03:51:59 +0000 Subject: [PATCH] show some missing wide 1's (bug #2269) --- 2d/font.c | 5 +++-- ChangeLog | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/2d/font.c b/2d/font.c index 21bd8b8f..a7fdab03 100644 --- a/2d/font.c +++ b/2d/font.c @@ -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++; diff --git a/ChangeLog b/ChangeLog index 89890210..e4c2b2f9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-07-29 Chris Taylor + + * 2d/font.c: show some missing wide 1's (bug #2269) + 2005-07-28 Chris Taylor * main/gauges.c: show gauges in SDL (help fix bug #2267) -- 2.39.2