diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-28 16:32:15 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-28 16:32:15 -0500 |
commit | a4782d9b5abc5cfbc7c53bd66e9c73cc3fbb3616 (patch) | |
tree | f5a80a90904da992482a6f0dc0cf39c88a0f01e0 | |
parent | 0236b59360d51938303b234747ad7ad5d5f3845b (diff) | |
parent | 16f6619ac8cff1f5a64112e7df4648bea9a007c8 (diff) |
Merge branch 'master' into remove-another-moneybyteparam-special-case
-rw-r--r-- | preprocessor.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/preprocessor.py b/preprocessor.py index 6b2dc298f..f2d5a5c42 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -498,8 +498,6 @@ def macro_translator(macro, token, line): elif param_klass.byte_type == "dw": if param_klass.size == 2: allowed_length += 1 # just label - elif param_klass == MoneyByteParam: - allowed_length += 1 elif param_klass.size == 3: allowed_length += 2 # bank and label else: |