diff options
author | Marcus Huderle <huderlem@gmail.com> | 2017-12-24 14:23:52 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-24 14:23:52 -0600 |
commit | e3078400bbdb3e8416806127290b9a2d68cfb3b8 (patch) | |
tree | 7ef9993608fc9c6e426ce908957ac07f72b8f650 /src/scene/intro.c | |
parent | b827bd9a5a44e17fa9fced591465fc64a619a134 (diff) | |
parent | e5c216e5066dac26fad64cb2e7bb6a5f0d40bf3f (diff) |
Merge pull request #492 from PikalaxALT/decompile_data
Decompile data and abstract away some explicit memcpy calls
Diffstat (limited to 'src/scene/intro.c')
-rw-r--r-- | src/scene/intro.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/scene/intro.c b/src/scene/intro.c index 9e334d06b..4dc6cc91c 100644 --- a/src/scene/intro.c +++ b/src/scene/intro.c @@ -1087,14 +1087,14 @@ static void Task_IntroStartBikeRide(u8 taskId) u8 spriteId; if (gUnknown_02039318 == 0) - LoadCompressedObjectPic(&gIntro2BrendanSpriteSheet); + LoadCompressedObjectPic(gIntro2BrendanSpriteSheet); else - LoadCompressedObjectPic(&gIntro2MaySpriteSheet); - LoadCompressedObjectPic(&gIntro2BicycleSpriteSheet); + LoadCompressedObjectPic(gIntro2MaySpriteSheet); + LoadCompressedObjectPic(gIntro2BicycleSpriteSheet); #ifdef SAPPHIRE - LoadCompressedObjectPic(&gIntro2LatiasSpriteSheet); + LoadCompressedObjectPic(gIntro2LatiasSpriteSheet); #else - LoadCompressedObjectPic(&gIntro2LatiosSpriteSheet); + LoadCompressedObjectPic(gIntro2LatiosSpriteSheet); #endif LoadSpritePalettes(gIntro2SpritePalettes); if (gUnknown_02039318 == 0) |