diff options
author | erorcun <erayorcunus@gmail.com> | 2020-07-08 17:32:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 17:32:11 +0200 |
commit | 592a6cc7923ed40e727f81262664c1b09fe1b128 (patch) | |
tree | 9667575bf8824037d7533f4c88eca495541f232f /src | |
parent | Merge pull request #652 from Domiiniik/miami (diff) | |
parent | CDarkel miami hud colors. (diff) | |
download | re3-592a6cc7923ed40e727f81262664c1b09fe1b128.tar re3-592a6cc7923ed40e727f81262664c1b09fe1b128.tar.gz re3-592a6cc7923ed40e727f81262664c1b09fe1b128.tar.bz2 re3-592a6cc7923ed40e727f81262664c1b09fe1b128.tar.lz re3-592a6cc7923ed40e727f81262664c1b09fe1b128.tar.xz re3-592a6cc7923ed40e727f81262664c1b09fe1b128.tar.zst re3-592a6cc7923ed40e727f81262664c1b09fe1b128.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/control/Darkel.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/control/Darkel.cpp b/src/control/Darkel.cpp index f00486e8..bbb35080 100644 --- a/src/control/Darkel.cpp +++ b/src/control/Darkel.cpp @@ -27,6 +27,7 @@ int32 CDarkel::KillsNeeded; int8 CDarkel::InterruptedWeapon; /* + * TODO: Collect timer/kill counter RGBA colors on top like in Hud/Frontend. * bStandardSoundAndMessages is a completely beta thing, * makes game handle sounds & messages instead of SCM (just like in GTA2) * but it's never been used in the game. Has unused sliding text when frenzy completed etc. @@ -102,7 +103,7 @@ CDarkel::DrawMessages() if (timeLeft > 4000 || CTimer::GetFrameCounter() & 1) { CFont::SetColor(CRGBA(0, 0, 0, 255)); CFont::PrintString(SCREEN_SCALE_FROM_RIGHT(35.0f), SCREEN_SCALE_Y(109.0f), gUString); - CFont::SetColor(CRGBA(150, 100, 255, 255)); + CFont::SetColor(CRGBA(0, 207, 133, 255)); CFont::PrintString(SCREEN_SCALE_FROM_RIGHT(34.0f), SCREEN_SCALE_Y(108.0f), gUString); } } @@ -110,7 +111,7 @@ CDarkel::DrawMessages() AsciiToUnicode(gString, gUString); CFont::SetColor(CRGBA(0, 0, 0, 255)); CFont::PrintString(SCREEN_SCALE_FROM_RIGHT(35.0f), SCREEN_SCALE_Y(144.0f), gUString); - CFont::SetColor(CRGBA(255, 128, 128, 255)); + CFont::SetColor(CRGBA(156, 91, 40, 255)); CFont::PrintString(SCREEN_SCALE_FROM_RIGHT(34.0f), SCREEN_SCALE_Y(143.0f), gUString); break; } |