diff options
| author | Bryan Bishop <kanzure@gmail.com> | 2012-05-05 02:48:44 -0500 | 
|---|---|---|
| committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-05 02:48:44 -0500 | 
| commit | 57d11561b0bb0c5e2233a2a2eb86d481e98b0cc3 (patch) | |
| tree | fbaa9c2aeb9669b08068121fcc2a8ee8a53b8666 | |
| parent | fa63fe8ab211035395690fd7cdcc5f901f082568 (diff) | |
looks like text commands might mess up the preprocessor?
| -rw-r--r-- | preprocessor.py | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/preprocessor.py b/preprocessor.py index d8b689788..8f1771fbf 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -12,7 +12,8 @@ from extras.crystal import command_classes, \                      PointerLabelBeforeBank, \                      PointerLabelAfterBank, \                      MoneyByteParam, \ -                    ItemFragment +                    ItemFragment, \ +                    text_command_classes  macros = command_classes + \      [ @@ -22,7 +23,7 @@ macros = command_classes + \      PeopleEvent,      DataByteWordMacro,      ItemFragment, -    ] +    ] #+ [x[1] for x in text_command_classes]  chars = {  "ガ": 0x05, | 
