diff options
author | Philipp AUER <philipp@karathan.at> | 2019-01-04 18:17:55 +0100 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-01-04 19:59:55 -0600 |
commit | 55202eac241be32ee10187de71ab7b65c29fdd99 (patch) | |
tree | 60c4b966f04c53647fcffc92f53fa1d51f2aed30 /src/data/trainer_graphics/back_pic_tables.h | |
parent | cba2f81bf870734960492b2d586d5a0684d99cf5 (diff) |
rename coords to size in struct MonCoords
Diffstat (limited to 'src/data/trainer_graphics/back_pic_tables.h')
-rw-r--r-- | src/data/trainer_graphics/back_pic_tables.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/data/trainer_graphics/back_pic_tables.h b/src/data/trainer_graphics/back_pic_tables.h index 8d4e27694..920ecbb39 100644 --- a/src/data/trainer_graphics/back_pic_tables.h +++ b/src/data/trainer_graphics/back_pic_tables.h @@ -1,13 +1,13 @@ const struct MonCoords gTrainerBackPicCoords[] = { - {8, 4}, - {8, 4}, - {8, 5}, - {8, 5}, - {8, 4}, - {8, 4}, - {8, 4}, - {8, 4}, + {.size = 8, .y_offset = 4}, + {.size = 8, .y_offset = 4}, + {.size = 8, .y_offset = 5}, + {.size = 8, .y_offset = 5}, + {.size = 8, .y_offset = 4}, + {.size = 8, .y_offset = 4}, + {.size = 8, .y_offset = 4}, + {.size = 8, .y_offset = 4}, }; // this table goes functionally unused, since none of these pics are compressed |