summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog.txt4
-rw-r--r--src/map/map.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/Changelog.txt b/Changelog.txt
index 88edac72e..fe13502fd 100644
--- a/Changelog.txt
+++ b/Changelog.txt
@@ -1,5 +1,7 @@
Date Added
-11/17 * Added skill_steal_type to battle_athena.conf for the new (but unconfirmed)
+11/17
+ * Fixed a crash in the afm reading/closing code [MouseJstr]
+ * Added skill_steal_type to battle_athena.conf for the new (but unconfirmed)
stealing formula [celest]
* Skill updates: [celest]
- Removed annoying skill fail messages from rogue's Snatcher
diff --git a/src/map/map.c b/src/map/map.c
index 7ecc3eb2a..755069b80 100644
--- a/src/map/map.c
+++ b/src/map/map.c
@@ -1642,6 +1642,7 @@ int map_readallmap(void) {
}
}
}
+ if (afm_file != NULL)
fclose(afm_file);
}