diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-04-09 20:40:46 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-04-09 20:40:46 +0200 |
commit | a5239b554fa13aaf0ffa5ee850402f71cd680d29 (patch) | |
tree | 47ac7800bd86e5674fee2b6fc3a797647570e6cb /src/render | |
parent | Merge pull request #393 from Sergeanur/txdimg (diff) | |
parent | PS2 Cheats, restored R*names (diff) | |
download | re3-a5239b554fa13aaf0ffa5ee850402f71cd680d29.tar re3-a5239b554fa13aaf0ffa5ee850402f71cd680d29.tar.gz re3-a5239b554fa13aaf0ffa5ee850402f71cd680d29.tar.bz2 re3-a5239b554fa13aaf0ffa5ee850402f71cd680d29.tar.lz re3-a5239b554fa13aaf0ffa5ee850402f71cd680d29.tar.xz re3-a5239b554fa13aaf0ffa5ee850402f71cd680d29.tar.zst re3-a5239b554fa13aaf0ffa5ee850402f71cd680d29.zip |
Diffstat (limited to 'src/render')
-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 c4aca8e4..80d7fe47 100644 --- a/src/render/Hud.cpp +++ b/src/render/Hud.cpp @@ -815,7 +815,7 @@ void CHud::Draw() DrawScriptText */ if (!CTimer::GetIsUserPaused()) { - CTextLine* IntroText = CTheScripts::IntroTextLines; + intro_text_line* IntroText = CTheScripts::IntroTextLines; for (int i = 0; i < MAX_NUM_INTRO_TEXT_LINES; i++) { if (CTheScripts::IntroTextLines[i].m_Text[0] && CTheScripts::IntroTextLines[i].m_bTextBeforeFade) { @@ -862,7 +862,7 @@ void CHud::Draw() } } - CScriptRectangle* IntroRect = CTheScripts::IntroRectangles; + intro_script_rectangle* IntroRect = CTheScripts::IntroRectangles; for (int i = 0; i < 16; i++) { if (CTheScripts::IntroRectangles[i].m_bIsUsed && CTheScripts::IntroRectangles[i].m_bBeforeFade) { |