diff options
author | yenatch <yenatch@gmail.com> | 2017-07-17 19:52:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-17 19:52:52 -0400 |
commit | cc3da4cdc00eb0c1ed36f50780b00c0d843884a1 (patch) | |
tree | ded87aae0570892c2718b0969957249b68736637 /constants | |
parent | d5c9a02e514d8bd75cbe192d6465ab4bb5af43ad (diff) | |
parent | c6e9dd8a2a56e13cf93ca3b7ad0dae73918771df (diff) |
Merge pull request #358 from marijnvdwerf/sapphire
Build German Sapphire (1.0)
Diffstat (limited to 'constants')
-rw-r--r-- | constants/misc_constants.inc | 8 | ||||
-rw-r--r-- | constants/version.inc | 6 |
2 files changed, 13 insertions, 1 deletions
diff --git a/constants/misc_constants.inc b/constants/misc_constants.inc index 438fed6b6..5f4330928 100644 --- a/constants/misc_constants.inc +++ b/constants/misc_constants.inc @@ -32,8 +32,14 @@ .equiv MALE, 0 .equiv FEMALE, 1 + .ifdef ENGLISH .equiv GAME_LANGUAGE, 2 - + .else + .ifdef GERMAN + .equiv GAME_LANGUAGE, 5 + .endif + .endif + .equiv ENEMY_TYPE1, 0 .equiv ENEMY_TYPE2, 1 .equiv PLAYER_TYPE1, 2 diff --git a/constants/version.inc b/constants/version.inc index 33d2804fc..c93e439f4 100644 --- a/constants/version.inc +++ b/constants/version.inc @@ -1,4 +1,10 @@ .ifdef SAPPHIRE + .equiv GAME_VERSION, 1 + .else + .equiv GAME_VERSION, 2 + .endif + + .ifdef SAPPHIRE .set BGM_EVIL_TEAM, BGM_AQA_0 .set BGM_GOOD_TEAM, BGM_MGM0 .else |