Fix some warnings.

svn-id: r41679
This commit is contained in:
Johannes Schickel 2009-06-19 17:53:25 +00:00
parent ec7d86404c
commit d4e01e3a1b
2 changed files with 5 additions and 2 deletions

View File

@ -852,7 +852,10 @@ private:
void decodeSjis(const char *src, char *dst);
static const char * const _languageExt[];
static const char _fontConversionTableGerman[];
// TODO: Rethink of a proper way for conversion, currently our GUI charset isn't defined
// properly, thus this might not work on every system.
static const uint8 _fontConversionTableGerman[];
static const int _fontConversionTableGermanSize;
// graphics

View File

@ -3296,7 +3296,7 @@ const int LoLEngine::_outroMonsterScaleTableY[] = {
0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100, 0x100
};
const char LoLEngine::_fontConversionTableGerman[] = {
const uint8 LoLEngine::_fontConversionTableGerman[] = {
'Ä', 0x8e, 'ä', 0x84, 'Ö', 0x99, 'ö',
0x94, 'Ü', 0x9a, 'ü', 0x81, 'ß', 0xe1
};