diff --git a/source/main/GameContext.cpp b/source/main/GameContext.cpp index 114022f296..534f31f5d7 100644 --- a/source/main/GameContext.cpp +++ b/source/main/GameContext.cpp @@ -1145,7 +1145,7 @@ void GameContext::UpdateCommonInputEvents(float dt) } if (rescuer == nullptr) { - App::GetConsole()->putMessage(Console::CONSOLE_MSGTYPE_INFO, Console::CONSOLE_SYSTEM_NOTICE, _L("No rescue truck found!"), "warning.png"); + App::GetConsole()->putMessage(Console::CONSOLE_MSGTYPE_INFO, Console::CONSOLE_SYSTEM_NOTICE, _L("No rescue truck found!"), "error.png"); } else { diff --git a/source/main/physics/Actor.cpp b/source/main/physics/Actor.cpp index b06701c68b..8aeda0a683 100644 --- a/source/main/physics/Actor.cpp +++ b/source/main/physics/Actor.cpp @@ -1272,7 +1272,7 @@ void Actor::displayAxleDiffMode() if (m_num_axle_diffs == 0) { App::GetConsole()->putMessage(Console::CONSOLE_MSGTYPE_INFO, Console::CONSOLE_SYSTEM_NOTICE, - _L("No inter-axle differential installed on current vehicle!"), "warning.png"); + _L("No inter-axle differential installed on current vehicle!"), "error.png"); } else { @@ -1300,7 +1300,7 @@ void Actor::displayWheelDiffMode() if (m_num_wheel_diffs == 0) { App::GetConsole()->putMessage(Console::CONSOLE_MSGTYPE_INFO, Console::CONSOLE_SYSTEM_NOTICE, - _L("No inter-wheel differential installed on current vehicle!"), "warning.png"); + _L("No inter-wheel differential installed on current vehicle!"), "error.png"); } else { @@ -1331,7 +1331,7 @@ void Actor::displayTransferCaseMode() else { App::GetConsole()->putMessage(Console::CONSOLE_MSGTYPE_INFO, Console::CONSOLE_SYSTEM_NOTICE, - _L("No transfercase installed on current vehicle!"), "warning.png"); + _L("No transfercase installed on current vehicle!"), "error.png"); } }