diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-06-20 17:47:33 -0500 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2018-06-20 17:47:33 -0500 |
commit | c80206e701bc8a290cb2c01afb12cb2e03bf473a (patch) | |
tree | e0c27c40b4d45a7227760c46df2d28de8965468a /src/field_tasks.c | |
parent | 9d9aef1b42f3ff6923824daf3fe07c562a661ac0 (diff) |
Rename map attribute structs to MapLayout
Diffstat (limited to 'src/field_tasks.c')
-rw-r--r-- | src/field_tasks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/field_tasks.c b/src/field_tasks.c index 25a4efc58..ea2058965 100644 --- a/src/field_tasks.c +++ b/src/field_tasks.c @@ -611,8 +611,8 @@ bool32 sub_8069D34(s16 x, s16 y) void SetSootopolisGymCrackedIceMetatiles(void) { s32 x, y; - s32 width = gMapHeader.mapData->width; - s32 height = gMapHeader.mapData->height; + s32 width = gMapHeader.mapLayout->width; + s32 height = gMapHeader.mapLayout->height; for (x = 0; x < width; x++) { for (y = 0; y < height; y++) |