From 62402b37693287829162a11953b8337df269be69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Fri, 26 Mar 2010 04:04:11 +0100 Subject: [PATCH] Fix silly veinlook columns --- examples/veinlook.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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;