diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-04-15 02:04:01 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-04-15 02:22:24 -0400 |
commit | 62abcecc54ac810dc082e5e822be4796a5064ece (patch) | |
tree | ea79fccbe0bc68db7ad69433a40b48ea71fd0d61 /src/wallclock.c | |
parent | c4ef45c161ef0d51478476a916010c619e94a732 (diff) |
More usage of DISPLAY constants
Diffstat (limited to 'src/wallclock.c')
-rw-r--r-- | src/wallclock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallclock.c b/src/wallclock.c index 4d1c1fd8f..70888ac5f 100644 --- a/src/wallclock.c +++ b/src/wallclock.c @@ -147,7 +147,7 @@ static const struct SpritePalette sSpritePalettes_Clock[] = static const struct OamData sOam_ClockHand = { - .y = 160, + .y = DISPLAY_HEIGHT, .shape = SPRITE_SHAPE(64x64), .size = SPRITE_SIZE(64x64), .priority = 1, @@ -199,7 +199,7 @@ static const struct SpriteTemplate sSpriteTemplate_HourHand = static const struct OamData sOam_PeriodIndicator = { - .y = 160, + .y = DISPLAY_HEIGHT, .shape = SPRITE_SHAPE(16x16), .size = SPRITE_SIZE(16x16), .priority = 3, |