justin3009/MMX3-ZeroProject

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

Closed this issue · 1 comments

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.

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)