diff options
author | Bryan Bishop <kanzure@gmail.com> | 2014-01-22 07:12:22 -0800 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2014-01-22 07:12:22 -0800 |
commit | 61b83803be9ccdcdcd95b7f8ea7accafab8d4d4d (patch) | |
tree | c9bc9681fb750a19364421bcb8fe3fbe69f30ff0 | |
parent | 074e47aeea8250239fb370116d94167e11848032 (diff) | |
parent | 89ca24a93475cdb7fdbdc046cb3ac7a83fe9d9e9 (diff) |
Merge pull request #65 from yenatch/rgbasm-equs
preprocessor: rgbasm "EQUS" takes string literals
-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 e7de46d..954263a 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 |