Codechange: Remove STR_BLACK_RAW_STRING.

This commit is contained in:
Peter Nelson
2023-04-25 18:01:58 +01:00
committed by PeterN
parent 0880616851
commit 61407840c6
7 changed files with 19 additions and 20 deletions

View File

@@ -140,7 +140,7 @@ static void ShowNewGRFInfo(const GRFConfig *c, const Rect &r, bool show_params)
/* Draw GRF info if it exists */
if (!StrEmpty(c->GetDescription())) {
SetDParamStr(0, c->GetDescription());
tr.top = DrawStringMultiLine(tr, STR_BLACK_RAW_STRING);
tr.top = DrawStringMultiLine(tr, STR_JUST_RAW_STRING, TC_BLACK);
} else {
tr.top = DrawStringMultiLine(tr, STR_NEWGRF_SETTINGS_NO_INFO);
}