diff options
author | yenatch <yenatch@gmail.com> | 2013-12-02 15:08:19 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-02 15:08:19 -0500 |
commit | a648e0a8cdc6c7d981a5641f4dc4d5b02e23e81e (patch) | |
tree | 56475b897503bcad8df08aaf01f2d397d6b7998f /pokemontools/preprocessor.py | |
parent | 07f7b1b892ac39597cb7e17fa95e3f52e617f5a2 (diff) |
preprocessor: remove some redundant code in macro_translator
Diffstat (limited to 'pokemontools/preprocessor.py')
-rw-r--r-- | pokemontools/preprocessor.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/pokemontools/preprocessor.py b/pokemontools/preprocessor.py index d6b7a43..1fac44d 100644 --- a/pokemontools/preprocessor.py +++ b/pokemontools/preprocessor.py @@ -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: |