Skip to content

Commit 4c17d31

Browse files
committed
dynamic sfx frames-per-chunk. updated release number
1 parent 77a5636 commit 4c17d31

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

7800bas.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ FILE *stdoutfilepointer;
1313

1414
extern int currentdmahole;
1515

16-
#define BASIC_VERSION_INFO "7800basic v0.18"
16+
#define BASIC_VERSION_INFO "7800basic v0.19"
1717

1818
int main(int argc, char *argv[])
1919
{

includes/std_routines.asm

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -750,11 +750,14 @@ servicesfxchannelsloop
750750
jmp servicesfxchannelsloop
751751
servicesfx_cont1
752752

753-
ldy #1 ; check to see if they're changing the frame countdown
753+
ldy #1 ; check to see if they're changing the priority/frame countdown
754754
lda (inttemp5),y
755-
cmp #$10
755+
cmp #$20
756756
bne servicesfx_cont1a
757-
ldy #2
757+
iny
758+
lda (inttemp5),y
759+
sta sfx1priority,x
760+
iny
758761
lda (inttemp5),y
759762
sta sfx1frames,x ; change the frame countdown
760763
lda #0

release.dat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.18
1+
0.19

0 commit comments

Comments
 (0)