Skip to content

Commit

Permalink
fixed invalid icon
Browse files Browse the repository at this point in the history
  • Loading branch information
tritonas00 committed Feb 12, 2022
1 parent 12ca23d commit 53e6884
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion source/main/GameContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
6 changes: 3 additions & 3 deletions source/main/physics/Actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down Expand Up @@ -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
{
Expand Down Expand Up @@ -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");
}
}

Expand Down

0 comments on commit 53e6884

Please # to comment.