summaryrefslogtreecommitdiff
path: root/pokemontools/preprocessor.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2014-01-22 07:12:22 -0800
committerBryan Bishop <kanzure@gmail.com>2014-01-22 07:12:22 -0800
commit61b83803be9ccdcdcd95b7f8ea7accafab8d4d4d (patch)
treec9bc9681fb750a19364421bcb8fe3fbe69f30ff0 /pokemontools/preprocessor.py
parent074e47aeea8250239fb370116d94167e11848032 (diff)
parent89ca24a93475cdb7fdbdc046cb3ac7a83fe9d9e9 (diff)
Merge pull request #65 from yenatch/rgbasm-equs
preprocessor: rgbasm "EQUS" takes string literals
Diffstat (limited to 'pokemontools/preprocessor.py')
-rw-r--r--pokemontools/preprocessor.py2
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