diff options
author | FieryMewtwo <77066742+FieryMewtwo@users.noreply.github.com> | 2021-12-03 11:23:01 -0500 |
---|---|---|
committer | FieryMewtwo <77066742+FieryMewtwo@users.noreply.github.com> | 2021-12-03 11:23:01 -0500 |
commit | c5fda323294d46e5ab6c97aa2dc10db12475ac24 (patch) | |
tree | 14159bfa1307785b8af077fcbd323394f8ef3d97 | |
parent | 1964bd9ed194eb806168de5dbf383461b57d16dc (diff) |
fixing a typo :)
-rw-r--r-- | Adding-Support-for-Connectivity-with-Other-Hacks-Whilst-Maintaining-Connectivity-with-Vanilla.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Adding-Support-for-Connectivity-with-Other-Hacks-Whilst-Maintaining-Connectivity-with-Vanilla.md b/Adding-Support-for-Connectivity-with-Other-Hacks-Whilst-Maintaining-Connectivity-with-Vanilla.md index ba60c99..31a77e9 100644 --- a/Adding-Support-for-Connectivity-with-Other-Hacks-Whilst-Maintaining-Connectivity-with-Vanilla.md +++ b/Adding-Support-for-Connectivity-with-Other-Hacks-Whilst-Maintaining-Connectivity-with-Vanilla.md @@ -179,7 +179,7 @@ Next, find the definition of `CopyTrainerCardData` and change it to the followin void CopyTrainerCardData(struct TrainerCard *dst, u16 *src, u8 gameVersion, u8 versionModifier); ``` Okay, now we actually need to use that new byte! Open [src/trainer_card.c](https://github.com/pret/pokeemerald/blob/master/src/trainer_card.c) and find the functions `CopyTrainerCardData`, `TrainerCard_GenerateCardForLinkPlayer` and `TrainerCard_GenerateCardForPlayer`. -In `CopyTrainerCardData, make the following changes: +In `CopyTrainerCardData`, make the following changes: ```diff - void CopyTrainerCardData(struct TrainerCard *dst, u16 *src, u8 gameVersion) + void CopyTrainerCardData(struct TrainerCard *dst, u16 *src, u8 gameVersion, u8 versionModifier) |