mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-08-22 10:14:06 -05:00
preprocessor: rgbasm "EQUS" takes string literals
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user