preprocessor: remove some redundant code in macro_translator

This commit is contained in:
yenatch 2013-12-02 15:08:19 -05:00
parent 07f7b1b892
commit a648e0a8cd

View File

@ -581,12 +581,6 @@ class Preprocessor(object):
if show_original_lines:
sys.stdout.write("; original_line: " + original_line)
# rgbasm can handle "db" so no preprocessing is required, plus this wont be
# reached because of earlier checks in macro_test.
if macro.macro_name in ["db", "dw"]:
sys.stdout.write(original_line)
return
# rgbasm can handle other macros too
if "is_rgbasm_macro" in dir(macro):
if macro.is_rgbasm_macro: