diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/landmark.h | 2 | ||||
-rwxr-xr-x | include/region_map_sections.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/landmark.h b/include/landmark.h index eee5ac8c2..395905033 100644 --- a/include/landmark.h +++ b/include/landmark.h @@ -1,6 +1,6 @@ #ifndef GUARD_LANDMARK_H #define GUARD_LANDMARK_H -u8 *GetLandmarkName(u8 mapSection, u8 id, u8 count); +const u8 *GetLandmarkName(u8 mapSection, u8 id, u8 count); #endif // GUARD_LANDMARK_H diff --git a/include/region_map_sections.h b/include/region_map_sections.h index 3b7c5d9eb..a3bd60b59 100755 --- a/include/region_map_sections.h +++ b/include/region_map_sections.h @@ -53,8 +53,8 @@ enum MAPSEC_Route132, // 0x2F MAPSEC_Route133, // 0x30 MAPSEC_Route134, // 0x31 - MAPSEC_MtChimney, // 0x38 - MAPSEC_Nothing, // 0x58 + MAPSEC_MtChimney = 0x38, // 0x38 + MAPSEC_Nothing = 0x58, // 0x58 }; #endif // GUARD_REGIONMAPSEC_H |