🐛 Fix infopanel text color

This commit is contained in:
Anders Jenbo 2021-05-12 11:39:03 +02:00
commit 68e73c0dfe
6 changed files with 22 additions and 22 deletions

View file

@ -5576,13 +5576,13 @@ void GetObjectStr(int i)
if (object[i]._oTrapFlag) {
sprintf(tempstr, _("Trapped %s"), infostr);
strcpy(infostr, tempstr);
infoclr = COL_RED;
infoclr = UIS_RED;
}
}
if (objectIsDisabled(i)) {
sprintf(tempstr, _("%s (disabled)"), infostr);
strcpy(infostr, tempstr);
infoclr = COL_RED;
infoclr = UIS_RED;
}
}