diff options
author | yenatch <yenatch@gmail.com> | 2013-07-04 03:55:04 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-07-10 19:17:04 -0400 |
commit | aa62a4b88d956af1034bd07d94a4a703269b59b1 (patch) | |
tree | 938413c60dfd8847ebee951e8a30d63ca5e0c2ee | |
parent | e7a7fcc92446134d47bbfb0b308c4decc2a2adf8 (diff) |
version constant
-rw-r--r-- | constants.asm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/constants.asm b/constants.asm index 9605dafc5..9cece6daa 100644 --- a/constants.asm +++ b/constants.asm @@ -1,5 +1,11 @@ _CRYSTAL EQU 1 +if _CRYSTAL +VERSION EQU 0 +else +VERSION EQU 1 +endc + INCLUDE "constants/pokemon_constants.asm" INCLUDE "constants/move_constants.asm" INCLUDE "constants/battle_constants.asm" |