diff options
-rw-r--r-- | Makefile.common | 6 | ||||
-rw-r--r-- | sword1/sworddefs.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index 8fbc8263be..c2447197ac 100644 --- a/Makefile.common +++ b/Makefile.common @@ -85,6 +85,12 @@ else MODULES += sky endif +ifdef DISABLE_SWORD1 +DEFINES += -DDISABLE_SWORD1 +else +MODULES += sword1 +endif + ifdef DISABLE_SWORD2 DEFINES += -DDISABLE_SWORD2 else diff --git a/sword1/sworddefs.h b/sword1/sworddefs.h index 282e2ff78c..4ce19a712a 100644 --- a/sword1/sworddefs.h +++ b/sword1/sworddefs.h @@ -1388,4 +1388,4 @@ enum ScriptVariableNames { #define RIGHT_TREE_POINTER_71 4653059 -#endif //SWORDDEFS_H
\ No newline at end of file +#endif //SWORDDEFS_H |