File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -1977,11 +1977,7 @@ kernal_delay_1ms
19771977wait_a_sec
19781978; Delay ~1.2 s so player can read the last text before screen is cleared
19791979 ldx #0
1980- !ifdef TARGET_MEGA65 {
1981- ldy #40 *5
1982- } else {
19831980 ldy #5
1984- }
19851981
19861982wait_yx_ms
19871983- jsr kernal_delay_1ms
Original file line number Diff line number Diff line change @@ -1713,10 +1713,11 @@ read_text
17131713 beq .done_expanding_x
17141714}
17151715 cmp #'.'
1716+ .jump_look
17161717 beq .look_for_x
17171718 cmp #','
1718- bne -
1719- jmp .look_for_x
1719+ beq .jump_look ; Do double jump because a direct jump is a byte too far, for z5
1720+ bne - ; Always branch
17201721.done_expanding_x
17211722}
17221723
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ RELEASE NOTES
22
33Upcoming release
44
5+ ================================================
6+ Release 14.24: 17 May 2024
7+
58New/changed features:
69- Appended ".prg" to boot file on X16, so it's easily recognizable as an executable file
710- Allow more characters in custom file names, now it's a-z, 0-9 and ".-()[]'"
@@ -13,6 +16,7 @@ Optimizations:
1316Bugfixes:
1417- A z1-z3 game would hang when entering a room where the room object has a newline character in the name
1518- Beep on MEGA65 played 40 times too long (~3 s)
19+ - The pause when doing save or restore on MEGA65 was 40s instead of 1s.
1620
1721================================================
1822Release 14.17: 17 April 2024
Original file line number Diff line number Diff line change 1- 14.23
1+ 14.24
You can’t perform that action at this time.
0 commit comments