diff options
| author | Kirill Petrashin <kirill8201@yandex.ru> | 2026-04-03 17:52:45 +0300 |
|---|---|---|
| committer | Kirill Petrashin <kirill8201@yandex.ru> | 2026-04-03 17:52:45 +0300 |
| commit | 104d23d1e4949fe01038f4a2fd706acf163b55c9 (patch) | |
| tree | 2d04966fe2155b5b845b53680b05ae84d6283b05 /main.c | |
| parent | 0dd0adf9547758381573caa6a7d485415fafb33d (diff) | |
| download | astar-104d23d1e4949fe01038f4a2fd706acf163b55c9.tar.xz | |
Remove DRAW_MAP_OFFSET_[XY]
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -179,7 +179,7 @@ int main(int argc, char **argv) { case 's': /* TODO: prompt for filename? or do a define idk */ map_to_bmp(map, width, height, start_pos, end_pos, path, visited, "out.bmp"); - mvprintw(height + map_offset_y + DRAW_MAP_OFFSET_Y + 1, map_offset_x, "Saved to out.bmp"); + mvprintw(height + map_offset_y + 1, map_offset_x - 2, "Saved to out.bmp"); /* FIXME: clear the line first */ getch(); break; case 'n': |
