mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 23:32:04 +00:00
- 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:
parent
a660eea116
commit
79ae117f8f
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue