diff --git a/CHANGELOG.md b/CHANGELOG.md index 51fbcc59..6a57764b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project somewhat adheres to [Semantic Versioning](https://semver.org/sp The **"Breaking Changes"** listed below are changes that have been made in the decompilation projects (e.g. pokeemerald), which porymap requires in order to work properly. If porymap is used on a project that is not up-to-date with the breaking changes, then porymap will likely break or behave improperly. ## [Unreleased] +- None + +## [1.2.1] - 2019-02-16 ### Added - Add ability to zoom in and out the map metatile selector via a slider at the bottom of the metatile selector window. @@ -75,6 +78,7 @@ The **"Breaking Changes"** listed below are changes that have been made in the d This was the initial release. [Unreleased]: https://github.com/huderlem/porymap/compare/1.2.0...HEAD +[1.2.1]: https://github.com/huderlem/porymap/compare/1.2.0...1.2.1 [1.2.0]: https://github.com/huderlem/porymap/compare/1.1.0...1.2.0 [1.1.0]: https://github.com/huderlem/porymap/compare/1.0.0...1.1.0 [1.0.0]: https://github.com/huderlem/porymap/tree/1.0.0 diff --git a/src/project.cpp b/src/project.cpp index da01dc95..d763efba 100644 --- a/src/project.cpp +++ b/src/project.cpp @@ -598,7 +598,7 @@ void Project::saveMapConstantsHeader() { } text += QString("#define MAP_GROUPS_COUNT %1\n\n").arg(groupNum); - text += QString("#endif // GUARD_CONSTANTS_MAP_GROUPS_H\n"); + text += QString("#endif // GUARD_CONSTANTS_MAP_GROUPS_H\n"); saveTextFile(root + "/include/constants/map_groups.h", text); }