diff --git a/examples/veinlook.cpp b/examples/veinlook.cpp index 42bb50369..f566d7a03 100644 --- a/examples/veinlook.cpp +++ b/examples/veinlook.cpp @@ -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;