fix MoneyByteParam formatting

This commit is contained in:
Bryan Bishop 2012-04-27 16:48:25 -05:00
parent 45c41795f5
commit d9a2680c71
1 changed files with 3 additions and 3 deletions

View File

@ -1410,11 +1410,11 @@ class MoneyByteParam(MultiByteParam):
def parse(self): def parse(self):
MultiByteParam.parse(self) MultiByteParam.parse(self)
# in the rom as xxyyzz # in the rom as xxyyzz
self.x = self.bytes[0] self.x = self.bytes[2]
self.y = self.bytes[1] self.y = self.bytes[1]
self.z = self.bytes[2] self.z = self.bytes[0]
def to_asm(self): def to_asm(self):
return str(self.x + self.y << 8 + self.z << 16) return str(self.x + (self.y << 8) + (self.z << 16))
#this is used by the preprocessor #this is used by the preprocessor
@staticmethod @staticmethod