summaryrefslogtreecommitdiffstats
path: root/src/render
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-01-08 13:47:37 +0100
committerSergeanur <s.anureev@yandex.ua>2021-01-08 13:47:37 +0100
commit0e2af1365671d7c7a454281fef32129888cebb8a (patch)
treedb46545d5d0ae4413dfdce35880d2441d05b04c3 /src/render
parenttimecycle; some rendering (diff)
parentwtf (diff)
downloadre3-0e2af1365671d7c7a454281fef32129888cebb8a.tar
re3-0e2af1365671d7c7a454281fef32129888cebb8a.tar.gz
re3-0e2af1365671d7c7a454281fef32129888cebb8a.tar.bz2
re3-0e2af1365671d7c7a454281fef32129888cebb8a.tar.lz
re3-0e2af1365671d7c7a454281fef32129888cebb8a.tar.xz
re3-0e2af1365671d7c7a454281fef32129888cebb8a.tar.zst
re3-0e2af1365671d7c7a454281fef32129888cebb8a.zip
Diffstat (limited to 'src/render')
-rw-r--r--src/render/SpecialFX.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/SpecialFX.cpp b/src/render/SpecialFX.cpp
index b1cce8e2..4eed988d 100644
--- a/src/render/SpecialFX.cpp
+++ b/src/render/SpecialFX.cpp
@@ -186,7 +186,7 @@ CSpecialFX::Render2DFXs(void)
CFont::SetCentreOff();
CFont::SetPropOn();
CFont::SetColor(CRGBA(0, 255, 0, 200));
- FONT_LOCALE(FONT_STANDARD);
+ CFont::SetFontStyle(FONT_LOCALE(FONT_STANDARD));
sprintf(gString, "%d", CTimer::GetFrameCounter() & 0x3F); // mb % 63
AsciiToUnicode(gString, gUString);
CFont::PrintString(SCREEN_WIDTH * 8 / 10, SCREEN_HEIGHT * 8 / 10, gUString);
@@ -211,7 +211,7 @@ CSpecialFX::Render2DFXs(void)
CFont::SetCentreOff();
CFont::SetPropOn();
CFont::SetColor(CRGBA(100, 100, 100, 200));
- FONT_LOCALE(FONT_STANDARD);
+ CFont::SetFontStyle(FONT_LOCALE(FONT_STANDARD));
CFont::PrintString(SCREEN_WIDTH * 8 / 10, SCREEN_HEIGHT * 8 / 10, gUString);
for (int32 i = 0; i < SCREEN_HEIGHT; i += 4) {
RwRenderStateSet(rwRENDERSTATESRCBLEND, (void*)rwBLENDONE);