From a13f3f7fdc5ccf3de836e53e5f4aaf727ddd60bf Mon Sep 17 00:00:00 2001 From: Kirill Petrashin Date: Fri, 20 Mar 2026 16:48:32 +0300 Subject: Add a TODO in map.c --- map.c | 1 + 1 file changed, 1 insertion(+) diff --git a/map.c b/map.c index fbe2577..a69affa 100644 --- a/map.c +++ b/map.c @@ -95,6 +95,7 @@ Map rbt_maze_map(size_t width, size_t height, unsigned int seed) { /* FIXME: I don't think we need DRAW_MAP_OFFSET_{X,Y} anymore * Although, at the same time, it does make less magic values, so I guess it's fine */ +/* TODO: Maybe add an option to render with ▄? that doubles the resolution, but requires us to use ncursesw, probably. */ void draw_map(Map map, size_t width, size_t height, int offset_x, int offset_y, Position start, Position goal) { /* I think it flickers less when we do that */ wnoutrefresh(stdscr); -- cgit v1.2.3