justin3009 / MMX3-ZeroProject

Mega Man X3 - Base Mod (Zero Project)
53 stars 3 forks source link

"No" text on Save/Load this File not aligned with cursor arrow. v4.2/v4.3 #6

Closed delta7890 closed 3 years ago

delta7890 commented 3 years ago

Mega Man X3 - Zero Project v4 3000

In previous builds the word "No" was positioned immediately to the right of the cursor arrow seen in this image. "No" is now positioned further to the left, but the cursor arrow's position has not been altered to compensate for this change.

This does not impact the actual saving and loading of files.

justin3009 commented 3 years ago

Fixed!

        LDA $05 ;Loads $7E:0005 (Temp. storage for cursor X coordinate)
        CLC
        ADC #$48 ;Adds #$48 to current value.
        STA $05 ;Stores to $7E:0005 (Temp. storage for cursor X coordinate)

Just had to alter this to:

        LDA $05 ;Loads $7E:0005 (Temp. storage for cursor X coordinate)
        CLC
        ADC #$28 ;Adds #$28 to current value.
        STA $05 ;Stores to $7E:0005 (Temp. storage for cursor X coordinate)