1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-27 16:54:52 +01:00

Use "X not found for Y" message style

This commit is contained in:
Peter Froud
2024-03-16 23:07:20 -07:00
committed by Gymnasiast
parent 9e702d8b65
commit a1517a4fcb
13 changed files with 28 additions and 27 deletions

View File

@@ -50,7 +50,7 @@ GameActions::Result SignSetStyleAction::Query() const
auto banner = GetBanner(_bannerIndex);
if (banner == nullptr)
{
LOG_ERROR("Invalid banner id %u", _bannerIndex);
LOG_ERROR("Banner not found for bannerIndex %u", _bannerIndex);
return GameActions::Result(GameActions::Status::InvalidParameters, STR_CANT_REPAINT_THIS, STR_NONE);
}