summaryrefslogtreecommitdiff
path: root/ui.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui.c')
-rw-r--r--ui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui.c b/ui.c
index 1c1eea3..70bfe5c 100644
--- a/ui.c
+++ b/ui.c
@@ -25,10 +25,10 @@ void printrect(int y, int x, int h, int w) {
refresh();
}
-void printmap(char** map, int y, int x, int mapH, int mapW) {
+void printmap(char* map, int y, int x, int mapH, int mapW) {
for (int r = 0; r < mapH; r++) {
for (int c = 0; c < mapW; c++) {
- if (map[r][c] == '+') {
+ if (map[r * mapW + c] == '+') {
mvaddch(y + r, x + 2 * c, (' ' | A_REVERSE));
addch(' ' | A_REVERSE);
} else {