summaryrefslogtreecommitdiff
path: root/src/tv.c
diff options
context:
space:
mode:
authorDiegoisawesome <diego@domoreaweso.me>2018-08-12 12:55:21 -0700
committerDiegoisawesome <diego@domoreaweso.me>2018-08-12 12:55:21 -0700
commit9a73a47dddbd84b03987cc9caba52bbb797cb9fa (patch)
treee630f8e610f21e0ae3d6a4dbd2b659f92e877111 /src/tv.c
parent2dd5fc23d4d34890e17a412ae9ad80e23c7aa50d (diff)
parent25832810f60a732f03608e0a02549c3318ba257d (diff)
Merge branch 'master' of github.com:pret/pokeemerald into Edwearth-learn_move
Diffstat (limited to 'src/tv.c')
-rw-r--r--src/tv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tv.c b/src/tv.c
index 2e915697e..d09e72abc 100644
--- a/src/tv.c
+++ b/src/tv.c
@@ -1448,8 +1448,8 @@ void ContestLiveUpdates_BeforeInterview_5(u8 a0, u8 a1)
sCurTVShowSlot = FindEmptyTVSlotWithinFirstFiveShowsOfArray(gSaveBlock1Ptr->tvShows);
if (sCurTVShowSlot != -1)
{
- show->contestLiveUpdates.winningSpecies = gUnknown_02039E00[a1].unk_00;
- StringCopy(show->contestLiveUpdates.winningTrainerName, gUnknown_02039E00[a1].unk_0d);
+ show->contestLiveUpdates.winningSpecies = gContestMons[a1].species;
+ StringCopy(show->contestLiveUpdates.winningTrainerName, gContestMons[a1].trainerName);
StripExtCtrlCodes(show->contestLiveUpdates.winningTrainerName);
show->contestLiveUpdates.appealFlags2 = a0;
if (a1 + 1 > gUnknown_02039F30)