(svn r3940) - FS#56 [Crash] Missing glyph(s) in big-font. Added several missing glyphs for the big font.

This commit is contained in:
Darkvater 2006-03-18 08:37:58 +00:00
parent e54f1e1e2b
commit efe65dc666
3 changed files with 7 additions and 1 deletions

Binary file not shown.

2
gfx.c
View File

@ -1620,7 +1620,7 @@ void LoadStringWidthTable(void)
}
for (i = 450; i != 674; i++) {
*b++ = (i < 545 || i > 577) && i != 585 && i != 587 && i != 588 && (i < 590 || i > 597) && (i < 599 || i > 601) && i != 603 && i != 633 && i != 665 ? GetSprite(i)->width + 1 : 0;
*b++ = (i < 545 || i > 577) && i != 588 && i != 590 && i != 591 && i != 593 && (i < 599 || i > 601) && i != 603 ? GetSprite(i)->width + 1 : 0;
}
}

View File

@ -314,6 +314,12 @@ static const SpriteID _openttd_grf_indexes[] = {
93, 96, // { | } ~ medium
541, 544, // { | } ~ large
SPR_HOUSE_ICON, SPR_HOUSE_ICON,
585, 585, // § large
587, 587, // © large
592, 592, // ® large
594, 597, // ° ± ² ³ large
633, 633, // × large
665, 665, // ÷ large
END
};