diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-04-26 21:03:15 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-04-26 21:03:15 +0200 |
commit | f0890b11122291a22d6a65f349281cf1aed49bd0 (patch) | |
tree | 3b418b522c5fd097abac916693e59808ea4f5b4f /src/render/Font.h | |
parent | More japanese (diff) | |
parent | Remove little hack (diff) | |
download | re3-f0890b11122291a22d6a65f349281cf1aed49bd0.tar re3-f0890b11122291a22d6a65f349281cf1aed49bd0.tar.gz re3-f0890b11122291a22d6a65f349281cf1aed49bd0.tar.bz2 re3-f0890b11122291a22d6a65f349281cf1aed49bd0.tar.lz re3-f0890b11122291a22d6a65f349281cf1aed49bd0.tar.xz re3-f0890b11122291a22d6a65f349281cf1aed49bd0.tar.zst re3-f0890b11122291a22d6a65f349281cf1aed49bd0.zip |
Diffstat (limited to 'src/render/Font.h')
-rw-r--r-- | src/render/Font.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/render/Font.h b/src/render/Font.h index 7c1d089f..73e9522a 100644 --- a/src/render/Font.h +++ b/src/render/Font.h @@ -34,6 +34,7 @@ enum { #ifdef MORE_LANGUAGES FONT_JAPANESE, #endif + MAX_FONTS }; enum { @@ -47,7 +48,9 @@ enum { FONT_LANGSET_EFIGS, FONT_LANGSET_RUSSIAN, + FONT_LANGSET_POLISH, FONT_LANGSET_JAPANESE + LANGSET_MAX }; #endif @@ -56,19 +59,20 @@ enum class CFont { #ifdef MORE_LANGUAGES - static int16 Size[2][3][193]; + static int16 Size[LANGSET_MAX][MAX_FONTS][193]; public: static uint8 LanguageSet; private: static int32 Slot; static CSprite2d Sprite[4]; #else - static int16 Size[3][193]; + static int16 Size[MAX_FONTS][193]; static CSprite2d* Sprite; //[3] #endif - static int16 
 + static int16 NewLine; + static CSprite2d Sprite[MAX_FONTS]; public: - static CFontDetails& Details; + static CFontDetails Details; static void Initialise(void); static void Shutdown(void); |