- Fixed: HU_FONTEND was too low to allow for the full 8-bit CP-1252 character range.

SVN r3590 (trunk)
This commit is contained in:
Randy Heit 2012-04-25 01:43:50 +00:00
parent a660eea116
commit 79ae117f8f

View file

@ -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)