aboutsummaryrefslogtreecommitdiff
path: root/bmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'bmp.c')
-rw-r--r--bmp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/bmp.c b/bmp.c
index 3abac0d..abc0db5 100644
--- a/bmp.c
+++ b/bmp.c
@@ -2,6 +2,7 @@
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
+#include <curses.h>
#include "map.h"
#include "path.h"
@@ -97,5 +98,6 @@ void map_to_bmp(Map map, size_t map_width, size_t map_height, Position start, Po
fclose(fout);
free(buf);
+ message(height, "Saved to %s", filename);
return;
}