diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-07-04 14:31:28 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-07-04 14:31:28 +0200 |
commit | 716740f918baef80be00ce2bd0b2dcfdd7d13a09 (patch) | |
tree | 70e982ab020ed6535f5e4b7e8524629246edbab9 /src/peds/PedDebug.cpp | |
parent | fixed typo (diff) | |
download | re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.tar re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.tar.gz re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.tar.bz2 re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.tar.lz re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.tar.xz re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.tar.zst re3-716740f918baef80be00ce2bd0b2dcfdd7d13a09.zip |
Diffstat (limited to 'src/peds/PedDebug.cpp')
-rw-r--r-- | src/peds/PedDebug.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/peds/PedDebug.cpp b/src/peds/PedDebug.cpp index 1c22963e..c3298461 100644 --- a/src/peds/PedDebug.cpp +++ b/src/peds/PedDebug.cpp @@ -82,8 +82,14 @@ static char StateText[][18] = { "Investigate", "Step away", "On Fire", + "Sun Bathe", + "Flash", + "Jog", + "Answer Mobile", "Unknown", "STATES_NO_AI", + "Abseil", + "Sit", "Jump", "Fall", "GetUp", @@ -106,6 +112,7 @@ static char StateText[][18] = { "Exit Car", "Hands Up", "Arrested", + "Deploying Stinger" }; static char PersonalityTypeText[][18] = { @@ -283,7 +290,7 @@ CPed::DebugRenderOnePedText(void) CFont::SetJustifyOff(); CFont::SetColor(CRGBA(255, 255, 0, 255)); CFont::SetBackGroundOnlyTextOn(); - CFont::SetFontStyle(0); + CFont::SetFontStyle(1); AsciiToUnicode(StateText[m_nPedState], gUString); CFont::PrintString(screenCoords.x, screenCoords.y, gUString); AsciiToUnicode(ObjectiveText[m_objective], gUString); |