1
0
Fork 0

Fix #13681: Missing unused string parameter for NewGRF parameter string.

pull/13682/head
Peter Nelson 2025-03-01 15:30:18 +00:00
parent c81d9b43ea
commit d2ded1ba80
No known key found for this signature in database
GPG Key ID: 8EF8F0A467DF75ED
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ static void ShowNewGRFInfo(const GRFConfig &c, const Rect &r, bool show_params)
if (!c.param.empty()) {
tr.top = DrawStringMultiLine(tr, GetString(STR_NEWGRF_SETTINGS_PARAMETER, STR_JUST_RAW_STRING, GRFBuildParamList(c)));
} else {
tr.top = DrawStringMultiLine(tr, GetString(STR_NEWGRF_SETTINGS_PARAMETER, STR_NEWGRF_SETTINGS_PARAMETER_NONE));
tr.top = DrawStringMultiLine(tr, GetString(STR_NEWGRF_SETTINGS_PARAMETER, STR_NEWGRF_SETTINGS_PARAMETER_NONE, std::monostate{}));
}
/* Draw the palette of the NewGRF */