woops. wrong character

This commit is contained in:
Enno Rehling 2010-09-12 05:20:32 +02:00
parent 163f6f13cf
commit fd05fe95e7
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ mr_tile(const map_region * mr, int highlight)
if (r->terrain->_name[1]=='l') { /* plain */
if (r_isforest(r)) return '#' | COLOR_PAIR(hl + COLOR_GREEN) | A_NORMAL;
return '+' | COLOR_PAIR(hl + COLOR_GREEN) | A_BOLD;
} else if (r->terrain->_name[1]=='l') { /* packice */
} else if (r->terrain->_name[1]=='a') { /* packice */
return ':' | COLOR_PAIR(hl + COLOR_WHITE) | A_BOLD;
}
break;