mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-04-26 01:11:24 -05:00
preprocessor: rgbasm "EQUS" takes string literals
This commit is contained in:
parent
d8f4e687eb
commit
89ca24a934
|
|
@ -523,7 +523,7 @@ class Preprocessor(object):
|
||||||
sys.stdout.write(asm)
|
sys.stdout.write(asm)
|
||||||
|
|
||||||
# convert text to bytes when a quote appears (not in a comment)
|
# 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))
|
sys.stdout.write(quote_translator(asm))
|
||||||
|
|
||||||
# check against other preprocessor features
|
# check against other preprocessor features
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user