diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-24 14:52:33 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-24 17:06:55 -0400 |
commit | 22c1bf965a7e25dfdc1d577a5e9f15098beeef25 (patch) | |
tree | 11bf960d64ca29b0a478dd196f3a2cb7d4bb8951 /src/tv.c | |
parent | 0ff767a9b5d6ece4547ab01a85d01012f7cf6800 (diff) |
Finish documenting berry blender
Diffstat (limited to 'src/tv.c')
-rw-r--r-- | src/tv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1332,7 +1332,7 @@ void PutBattleUpdateOnTheAir(u8 opponentLinkPlayerId, u16 move, u16 speciesPlaye } } -bool8 Put3CheersForPokeblocksOnTheAir(const u8 *partnersName, u8 flavor, u8 unused, u8 sheen, u8 language) +bool8 Put3CheersForPokeblocksOnTheAir(const u8 *partnersName, u8 flavor, u8 color, u8 sheen, u8 language) { TVShow *show; u8 name[32]; @@ -1355,7 +1355,7 @@ bool8 Put3CheersForPokeblocksOnTheAir(const u8 *partnersName, u8 flavor, u8 unus StripExtCtrlCodes(name); StringCopy(show->threeCheers.worstBlenderName, name); show->threeCheers.flavor = flavor; - show->threeCheers.unk_03_3 = unused; + show->threeCheers.color = color; show->threeCheers.sheen = sheen; tv_store_id_2x(show); show->threeCheers.language = gGameLanguage; |