diff options
author | Fire_Head <Fire-Head@users.noreply.github.com> | 2020-04-19 22:01:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-19 22:01:54 +0200 |
commit | eb4f06114de8578804caf2192e975ae72265f503 (patch) | |
tree | 29936b11d5d37ff0c3f4b5525fe8842668f81730 /src/render/Font.h | |
parent | Merge pull request #474 from Nick007J/master (diff) | |
parent | MenuScreens.h fix (diff) | |
download | re3-eb4f06114de8578804caf2192e975ae72265f503.tar re3-eb4f06114de8578804caf2192e975ae72265f503.tar.gz re3-eb4f06114de8578804caf2192e975ae72265f503.tar.bz2 re3-eb4f06114de8578804caf2192e975ae72265f503.tar.lz re3-eb4f06114de8578804caf2192e975ae72265f503.tar.xz re3-eb4f06114de8578804caf2192e975ae72265f503.tar.zst re3-eb4f06114de8578804caf2192e975ae72265f503.zip |
Diffstat (limited to 'src/render/Font.h')
-rw-r--r-- | src/render/Font.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/render/Font.h b/src/render/Font.h index ebf5e292..01d67700 100644 --- a/src/render/Font.h +++ b/src/render/Font.h @@ -44,14 +44,16 @@ enum { enum { FONT_LANGSET_EFIGS, - FONT_LANGSET_RUSSIAN + FONT_LANGSET_RUSSIAN, + FONT_LANGSET_POLISH, + LANGSET_MAX }; #endif class CFont { #ifdef MORE_LANGUAGES - static int16 Size[2][MAX_FONTS][193]; + static int16 Size[LANGSET_MAX][MAX_FONTS][193]; static uint8 LanguageSet; static int32 Slot; #else |