diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2019-07-30 21:31:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-30 21:31:27 -0500 |
commit | bc159dbb03735db55e6a09bb7947dccc70d0532b (patch) | |
tree | 5b27866fe839d0f2f7ae76e0f13580ecea2dd863 /src/roulette_gfx.c | |
parent | b8393b3a799f92e7064c266600607d98f6baf4d9 (diff) | |
parent | cf0da4c3bb5658908275068591fe51fb6f2ce49d (diff) |
Merge pull request #752 from camthesaxman/emerald_diff
resolve some Emerald differences
Diffstat (limited to 'src/roulette_gfx.c')
-rw-r--r-- | src/roulette_gfx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/roulette_gfx.c b/src/roulette_gfx.c index 1cac00daf..afcb94df6 100644 --- a/src/roulette_gfx.c +++ b/src/roulette_gfx.c @@ -1160,8 +1160,8 @@ void sub_8118724(struct Sprite *sprite) sprite->pos2.y = -cos * sprite->data[4] >> 12; if (IsSEPlaying()) { - m4aMPlayPanpotControl(&gMPlay_SE1, 0xffff, sprite->pos2.x); - m4aMPlayPanpotControl(&gMPlay_SE2, 0xffff, sprite->pos2.x); + m4aMPlayPanpotControl(&gMPlayInfo_SE1, 0xffff, sprite->pos2.x); + m4aMPlayPanpotControl(&gMPlayInfo_SE2, 0xffff, sprite->pos2.x); } } @@ -2221,8 +2221,8 @@ void sub_8119BCC(struct Sprite *sprite) if (IsSEPlaying()) { s8 u = -((116 - sprite->pos1.x) / 2); - m4aMPlayPanpotControl(&gMPlay_SE1, 0xffff, u); - m4aMPlayPanpotControl(&gMPlay_SE2, 0xffff, u); + m4aMPlayPanpotControl(&gMPlayInfo_SE1, 0xffff, u); + m4aMPlayPanpotControl(&gMPlayInfo_SE2, 0xffff, u); } } else |