mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
use $byte not 0xbyte
This commit is contained in:
parent
92f7a85103
commit
41a5e27bdd
@ -2160,7 +2160,7 @@ class SingleByteParam():
|
||||
if not self.should_be_decimal: return hex(self.byte).replace("0x", "$")
|
||||
else: return str(self.byte)
|
||||
class HexByte(SingleByteParam):
|
||||
def to_asm(self): return hex(self.byte)
|
||||
def to_asm(self): return "$%.2x" % (self.byte)
|
||||
class DollarSignByte(SingleByteParam):
|
||||
#def to_asm(self): return "$%.2x"%self.byte
|
||||
def to_asm(self): return hex(self.byte).replace("0x", "$")
|
||||
|
Loading…
Reference in New Issue
Block a user