Skip to content

Commit

Permalink
Fixed too long pause for save/restore on MEGA65. Made x_for_examine a…
Browse files Browse the repository at this point in the history
… byte shorter. Bumped version# and releasenotes for a proper release.
  • Loading branch information
fredrikr committed May 17, 2024
1 parent 7272e09 commit a0c8715
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 0 additions & 4 deletions asm/disk.asm
Original file line number Diff line number Diff line change
Expand Up @@ -1977,11 +1977,7 @@ kernal_delay_1ms
wait_a_sec
; Delay ~1.2 s so player can read the last text before screen is cleared
ldx #0
!ifdef TARGET_MEGA65 {
ldy #40*5
} else {
ldy #5
}

wait_yx_ms
- jsr kernal_delay_1ms
Expand Down
5 changes: 3 additions & 2 deletions asm/text.asm
Original file line number Diff line number Diff line change
Expand Up @@ -1713,10 +1713,11 @@ read_text
beq .done_expanding_x
}
cmp #'.'
.jump_look
beq .look_for_x
cmp #','
bne -
jmp .look_for_x
beq .jump_look ; Do double jump because a direct jump is a byte too far, for z5
bne - ; Always branch
.done_expanding_x
}

Expand Down
4 changes: 4 additions & 0 deletions releasenotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ RELEASE NOTES

Upcoming release

================================================
Release 14.24: 17 May 2024

New/changed features:
- Appended ".prg" to boot file on X16, so it's easily recognizable as an executable file
- Allow more characters in custom file names, now it's a-z, 0-9 and ".-()[]'"
Expand All @@ -13,6 +16,7 @@ Optimizations:
Bugfixes:
- A z1-z3 game would hang when entering a room where the room object has a newline character in the name
- Beep on MEGA65 played 40 times too long (~3 s)
- The pause when doing save or restore on MEGA65 was 40s instead of 1s.

================================================
Release 14.17: 17 April 2024
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.23
14.24

0 comments on commit a0c8715

Please sign in to comment.