attempt#2 to fix masterwork/exceptional/decorated symbols

this time we're using a couple of `static_cast<char>(...)` thingies
develop
TaxiService 2023-03-31 17:33:23 +02:00 committed by GitHub
parent 38d4eea7ac
commit 18f1b5c675
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

@ -720,13 +720,13 @@ df::coord Items::getPosition(df::item *item)
return item->pos;
}
static char quality_table[] = { 0, '-', '+', '*', '=', '@' };
static int quality_table[] = { 0, 45, 43, 42, 240, 15 };
static void addQuality(std::string &tmp, int quality)
{
if (quality > 0 && quality <= 5) {
char c = quality_table[quality];
tmp = c + tmp + c;
int c = quality_table[quality];
tmp = static_cast<char>(c) + tmp + static_cast<char>(c);
}
}
@ -825,7 +825,7 @@ std::string Items::getDescription(df::item *item, int type, bool decorate)
addQuality(tmp, item->getQuality());
if (item->isImproved()) {
tmp = "<" + tmp + ">";
tmp = static_cast<char>(174) + tmp + static_cast<char>(175);
addQuality(tmp, item->getImprovementQuality());
}
}