(svn r11981) -Fix [FS#1698]: Use unicode glyph mapping to fix up missing/shuffled sprites in original data files instead of shuffling or skipping

sprites directly. Some required glyphs were not loaded.
-Fix: Large capital U with grave (Ù) along with some other glyphs are broken in the original data files, so do no display them.
This commit is contained in:
peter1138
2008-01-25 13:48:39 +00:00
parent c9d751a181
commit e37b88ebfc
6 changed files with 73 additions and 109 deletions

View File

@@ -14,7 +14,7 @@
#include "table/sprites.h"
#include "table/strings.h"
static const char *UPARROW = "\xEE\x8A\x80";
static const char *UPARROW = "\xEE\x8A\xA0";
static const char *DOWNARROW = "\xEE\x8A\xAA";
static Point HandleScrollbarHittest(const Scrollbar *sb, int top, int bottom)