corrected colors

This commit is contained in:
2024-07-13 15:43:21 -04:00
parent 3ae82841f4
commit ccf6dd0582
7 changed files with 7 additions and 15 deletions

View File

@ -13,9 +13,9 @@ void character::start_turn() {
base_hit_rate = {1, 1};
}
void character::print(display *out, bool color, bool player) {
void character::print(display *out, bool player) {
out->print_char(pos, player ? '@' : CHARACTER_REP[race],
COLOR_PAIR(COLOR_BLACK_ON_WHITE));
player ? COLOR_PAIR(COLOR_BLUE) : COLOR_PAIR(COLOR_RED));
}
enum race character::get_race() const {