From 79ae117f8f81b72423ea91102fcb2bf5928f5b4c Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Wed, 25 Apr 2012 01:43:50 +0000 Subject: [PATCH] - Fixed: HU_FONTEND was too low to allow for the full 8-bit CP-1252 character range. SVN r3590 (trunk) --- src/hu_stuff.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hu_stuff.h b/src/hu_stuff.h index bf97c6588..ce7266c75 100644 --- a/src/hu_stuff.h +++ b/src/hu_stuff.h @@ -28,7 +28,7 @@ class player_t; // Globally visible constants. // #define HU_FONTSTART BYTE('!') // the first font characters -#define HU_FONTEND BYTE('ß') // the last font characters +#define HU_FONTEND BYTE('\377') // the last font characters // Calculate # of glyphs in font. #define HU_FONTSIZE (HU_FONTEND - HU_FONTSTART + 1)