Medabots / medarot3

Medarot 3 GBC disassembly/translation
34 stars 6 forks source link

Overflow(?) Error #166

Closed kabuto93 closed 1 year ago

kabuto93 commented 1 year ago

m3_kuwagata_overflow.zip Just talk to clerk to trigger.

VariantXYZ commented 1 year ago

Ah... this is due to "Interior Decorator" being the item in question (18 characters).

Currently we cap copies into cBUF06 at 17 (16 characters + 1 terminator).

I could just increase it to 19, which seems like our longest part, but realistically, we might just need to shorten this, since it doesn't even fit in the part screen:

image

VariantXYZ commented 1 year ago

This'll just require changing some of the strings, but we can do:

Interior Decorator -> Int. Decorator
Blanker Expression -> Blank Expression
Improved Missile -> Imp. Missile (this one actually fits, but I need to change the others, so this makes it consistent)
Bottomless Shovel -> BottomlessShovel (it was just one character off)
Improved Revolver -> Imp. Revolver
Improved Machinegun -> Imp. Machinegun
Crawling In Again -> Crawling In 2 (???)
Improved Ochitsuka -> Imp. Ochitsuka

for now.