Closed delta7890 closed 4 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)
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.