diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2020-12-31 16:10:08 +0100 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2020-12-31 16:10:08 +0100 |
commit | bc7161754f9be556e11d1049c9666770eaad94fa (patch) | |
tree | 4bd352a3a0a31abdcb0483505919e2fb96632f98 /src/render/Hud.cpp | |
parent | hud cleanup (diff) | |
download | re3-bc7161754f9be556e11d1049c9666770eaad94fa.tar re3-bc7161754f9be556e11d1049c9666770eaad94fa.tar.gz re3-bc7161754f9be556e11d1049c9666770eaad94fa.tar.bz2 re3-bc7161754f9be556e11d1049c9666770eaad94fa.tar.lz re3-bc7161754f9be556e11d1049c9666770eaad94fa.tar.xz re3-bc7161754f9be556e11d1049c9666770eaad94fa.tar.zst re3-bc7161754f9be556e11d1049c9666770eaad94fa.zip |
Diffstat (limited to '')
-rw-r--r-- | src/render/Hud.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/Hud.cpp b/src/render/Hud.cpp index 37a69cb5..2adcbb81 100644 --- a/src/render/Hud.cpp +++ b/src/render/Hud.cpp @@ -1100,11 +1100,11 @@ void CHud::Draw() if (!CTimer::GetIsUserPaused()) { for (int i = 0; i < ARRAY_SIZE(CTheScripts::IntroTextLines); i++) { if (CTheScripts::IntroTextLines[i].m_Text[0] && CTheScripts::IntroTextLines[i].m_bTextBeforeFade) { - CFont::SetScale(SCREEN_SCALE_X_PC(CTheScripts::IntroTextLines[i].m_fScaleX), SCREEN_SCALE_Y_PC(CTheScripts::IntroTextLines[i].m_fScaleY + CFont::SetScale(SCREEN_SCALE_X_PC(CTheScripts::IntroTextLines[i].m_fScaleX), SCREEN_SCALE_Y_PC(CTheScripts::IntroTextLines[i].m_fScaleY) #if !defined(PS2_HUD) || defined(FIX_BUGS) * 0.5f #endif - )); + ); CFont::SetColor(CTheScripts::IntroTextLines[i].m_sColor); |