diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-12-19 12:34:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-19 12:34:20 -0500 |
commit | 567589d3ddc30c1a78ce76739f278e4d8f35ef5f (patch) | |
tree | b44bb56f76662182d7b51302c1817592491d0ca0 /src/fieldmap.c | |
parent | 7984a91c0892e0bd96ace89405d565ec0b43e084 (diff) | |
parent | 3d123182a8fe8182f66d5e265067107bc276b84e (diff) |
Merge pull request #187 from PikalaxALT/leafgreen
Match Pokemon FireRed 1.1 US
Diffstat (limited to 'src/fieldmap.c')
-rw-r--r-- | src/fieldmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fieldmap.c b/src/fieldmap.c index 5582b6977..adb26f230 100644 --- a/src/fieldmap.c +++ b/src/fieldmap.c @@ -83,7 +83,7 @@ void sub_8058A00(struct MapHeader * mapHeader) VMap.map = gBackupMapLayout; VMap.Xsize = mapLayout->width + 15; VMap.Ysize = mapLayout->height + 14; - AGB_ASSERT_EX(VMap.Xsize * VMap.Ysize <= VIRTUAL_MAP_SIZE, "C:/WORK/POKeFRLG/src/pm_lgfr_ose/source/fieldmap.c", 158); + AGB_ASSERT_EX(VMap.Xsize * VMap.Ysize <= VIRTUAL_MAP_SIZE, ABSPATH("fieldmap.c"), 158); map_copy_with_padding(mapLayout->map, mapLayout->width, mapLayout->height); mapheader_copy_mapdata_of_adjacent_maps(mapHeader); } |