diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-01-01 19:03:47 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-01 19:03:47 -0800 |
commit | 397f32f29dbcd8fb6ad47afe5ba1ee354ca2b5c7 (patch) | |
tree | b4c05276d2e5d65f5bf7cf55a054947c92235f8e /src/field/field_tasks.c | |
parent | 79a9ff94719b5397647ddf11efc1d3dc1d388e1d (diff) | |
parent | 664b42470fb6c590dd2bd8b02707a790feda23fe (diff) |
Merge pull request #503 from huderlem/specials
Label a bunch of specials
Diffstat (limited to 'src/field/field_tasks.c')
-rw-r--r-- | src/field/field_tasks.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/field/field_tasks.c b/src/field/field_tasks.c index 393c7d75a..ce5fc6c0e 100644 --- a/src/field/field_tasks.c +++ b/src/field/field_tasks.c @@ -608,14 +608,14 @@ bool32 sub_8069D34(s16 x, s16 y) return FALSE; } -void sub_8069D78(void) +void SetSootopolisGymCrackedIceMetatiles(void) { s32 x, y; s32 width = gMapHeader.mapData->width; s32 height = gMapHeader.mapData->height; - for (x=0; x<width; x++) + for (x = 0; x < width; x++) { - for (y=0; y<height; y++) + for (y = 0; y < height; y++) { if (sub_8069D34(x, y) == TRUE) { |