summaryrefslogtreecommitdiff
path: root/pokemontools/preprocessor.py
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-12-02 15:08:19 -0500
committeryenatch <yenatch@gmail.com>2013-12-02 15:08:19 -0500
commita648e0a8cdc6c7d981a5641f4dc4d5b02e23e81e (patch)
tree56475b897503bcad8df08aaf01f2d397d6b7998f /pokemontools/preprocessor.py
parent07f7b1b892ac39597cb7e17fa95e3f52e617f5a2 (diff)
preprocessor: remove some redundant code in macro_translator
Diffstat (limited to 'pokemontools/preprocessor.py')
-rw-r--r--pokemontools/preprocessor.py6
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: