diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2020-06-07 04:03:06 +0200 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2020-06-07 04:03:06 +0200 |
commit | 9c0adf6a8f5b7f49ae233d2fce8a7ceaedc34cfb (patch) | |
tree | a7f73dc3672ecbd60bf8a9c07fdc359823603292 /src/core/main.cpp | |
parent | FONT_BANK renamed to FONT_STANDARD (diff) | |
download | re3-9c0adf6a8f5b7f49ae233d2fce8a7ceaedc34cfb.tar re3-9c0adf6a8f5b7f49ae233d2fce8a7ceaedc34cfb.tar.gz re3-9c0adf6a8f5b7f49ae233d2fce8a7ceaedc34cfb.tar.bz2 re3-9c0adf6a8f5b7f49ae233d2fce8a7ceaedc34cfb.tar.lz re3-9c0adf6a8f5b7f49ae233d2fce8a7ceaedc34cfb.tar.xz re3-9c0adf6a8f5b7f49ae233d2fce8a7ceaedc34cfb.tar.zst re3-9c0adf6a8f5b7f49ae233d2fce8a7ceaedc34cfb.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/main.cpp b/src/core/main.cpp index 3fca618b..eb39b287 100644 --- a/src/core/main.cpp +++ b/src/core/main.cpp @@ -507,7 +507,7 @@ LoadingScreen(const char *str1, const char *str2, const char *splashscreen) CFont::SetScale(SCREEN_SCALE_X(0.75f), yscale); CFont::SetPropOn(); CFont::SetRightJustifyOff(); - CFont::SetFontStyle(FONT_STANDARD); + CFont::SetFontStyle(FONT_BANK); CFont::SetColor(CRGBA(255, 255, 255, 255)); AsciiToUnicode(str1, tmpstr); CFont::PrintString(hpos, vpos, tmpstr); @@ -702,7 +702,7 @@ DisplayGameDebugText() CFont::SetPropOn(); CFont::SetBackgroundOff(); - CFont::SetFontStyle(FONT_STANDARD); + CFont::SetFontStyle(FONT_BANK); CFont::SetScale(SCREEN_SCALE_X(0.5f), SCREEN_SCALE_Y(0.5f)); CFont::SetCentreOff(); CFont::SetRightJustifyOff(); |