mirror of https://github.com/pret/pokecrystal.git
Merge pull request #168 from kanzure/remove-preprocessor-special-case
Remove a special case for MoneyByteParam.
This commit is contained in:
commit
16f6619ac8
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue