diff options
author | Josh <32826900+ShinyDragonHunter@users.noreply.github.com> | 2021-10-01 22:01:11 +0100 |
---|---|---|
committer | Josh <32826900+ShinyDragonHunter@users.noreply.github.com> | 2021-10-01 22:01:11 +0100 |
commit | ff022c7540a064382192b17128f037f447c6dc7c (patch) | |
tree | 79be82e2d16a7d5d7eee4b0ba40c43b9dd838fde | |
parent | b8b163729df0cbc8cfe8303af5185225c3924f2c (diff) |
Updated Adding Support for Connectivity with Other Hacks Whilst Maintaining Connectivity with Vanilla (markdown)
-rw-r--r-- | Adding-Support-for-Connectivity-with-Other-Hacks-Whilst-Maintaining-Connectivity-with-Vanilla.md | 3 |
1 files changed, 1 insertions, 2 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 9d5d049..ba60c99 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 @@ -11,10 +11,9 @@ First, we want to open [include/constants/global.h](https://github.com/pret/poke + #define MODIFIER_NONE 0 // official games + #define MODIFIER_HELIODOR 1 // Heliodor. + #define MODIFIER_DX 2 // 4-2 is FireRed DX and 5-2 is LeafGreen DX -+ #define MODIFIER_CRYSTALDUST 3 // 4-3 is modified CrystalDust ``` -These are constant values for the different possible IDs we're gonna use. 1, 2 and 3 have already been reserved but the tutorial will allow for 255 different IDs. Think of a number and define it like the following: +These are constant values for the different possible IDs we're gonna use. 1 and 2 have already been reserved but the tutorial will allow for 255 different IDs. Think of a number and define it like the following: ```c #define VERSION_MODIFIER (MODIFIER_DX) ``` |