diff options
author | yenatch <yenatch@gmail.com> | 2014-01-19 19:36:45 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-01-19 19:37:35 -0500 |
commit | 89ca24a93475cdb7fdbdc046cb3ac7a83fe9d9e9 (patch) | |
tree | b0787050479b9cb26b273340220a0b23dcb4c5e8 /pokemontools/preprocessor.py | |
parent | d8f4e687ebc49d4b135f0d8b7f10a643114a0d8a (diff) |
preprocessor: rgbasm "EQUS" takes string literals
Diffstat (limited to 'pokemontools/preprocessor.py')
-rw-r--r-- | pokemontools/preprocessor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/preprocessor.py b/pokemontools/preprocessor.py index bde5f70..a942223 100644 --- a/pokemontools/preprocessor.py +++ b/pokemontools/preprocessor.py @@ -523,7 +523,7 @@ class Preprocessor(object): sys.stdout.write(asm) # convert text to bytes when a quote appears (not in a comment) - elif "\"" in asm: + elif "\"" in asm and "EQUS" not in asm: sys.stdout.write(quote_translator(asm)) # check against other preprocessor features |