mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-09-08 18:25:11 -05:00
fix zzyyxx output for MoneyByteParam (checkmoney, takemoney)
original-commit-id: 2d763b53a6071b232794795c510363b280f45a89
This commit is contained in:
@@ -1598,7 +1598,7 @@ class MoneyByteParam(MultiByteParam):
|
||||
y = (value & 0x00FF00) >> 8
|
||||
z = (value & 0xFF0000) >> 16
|
||||
|
||||
return str(x) + "\ndb "+str(y)+"\ndb "+str(z)
|
||||
return str(z) + "\ndb "+str(y)+"\ndb "+str(x)
|
||||
|
||||
class CoinByteParam(MultiByteParam):
|
||||
size = 2
|
||||
|
||||
Reference in New Issue
Block a user