aboutsummaryrefslogtreecommitdiffstats
path: root/textpre.py
diff options
context:
space:
mode:
authorU-Fish-PC\Daniel <corrnondacqb@yahoo.com>2013-10-31 14:35:51 -0400
committerU-Fish-PC\Daniel <corrnondacqb@yahoo.com>2013-10-31 14:35:51 -0400
commit1a34c1a43f03fa7408b9853537cdda7615b8b577 (patch)
tree69b90bc5d7ec0b0214bb4d1fbd709e5f3e608184 /textpre.py
parentRemove redundant addresses and 'known jump sources' (diff)
parentMerge branch 'music' of https://github.com/dannye/pokered (diff)
downloadpokeyellow-1a34c1a43f03fa7408b9853537cdda7615b8b577.tar.gz
pokeyellow-1a34c1a43f03fa7408b9853537cdda7615b8b577.tar.xz
pokeyellow-1a34c1a43f03fa7408b9853537cdda7615b8b577.zip
Merge branch 'master' of https://github.com/iimarckus/pokered
Conflicts: main.asm
Diffstat (limited to 'textpre.py')
-rw-r--r--textpre.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/textpre.py b/textpre.py
index c4e65398..294e9ccb 100644
--- a/textpre.py
+++ b/textpre.py
@@ -262,6 +262,12 @@ chars = {
preprocessor.chars = chars
+from extras.pokemontools.crystal import (
+ callchannel,
+ loopchannel,
+)
+
config = configuration.Config()
-processor = preprocessor.Preprocessor(config, [])
+macros = [callchannel, loopchannel]
+processor = preprocessor.Preprocessor(config, macros)
processor.preprocess()