Fix silly veinlook columns

develop
Petr Mrázek 2010-03-26 04:04:11 +01:00
parent 517aa0e6e3
commit 62402b3769
1 changed files with 1 additions and 3 deletions

@ -78,6 +78,7 @@ int puttile(int x, int y, int tiletype, int color)
case EMPTY:
znak = ' ';
break;
case PILLAR:
case WALL:
attron(COLOR_PAIR(color));
mvwaddwstr(stdscr, y, x, L"\u2593");
@ -87,9 +88,6 @@ int puttile(int x, int y, int tiletype, int color)
case FORTIFICATION:
znak = '#';
break;
case PILLAR:
znak = 'O';
break;
case STAIR_DOWN:
znak = '>';
break;