From 89ca24a93475cdb7fdbdc046cb3ac7a83fe9d9e9 Mon Sep 17 00:00:00 2001 From: yenatch Date: Sun, 19 Jan 2014 19:36:45 -0500 Subject: preprocessor: rgbasm "EQUS" takes string literals --- pokemontools/preprocessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pokemontools/preprocessor.py') 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 -- cgit v1.2.3