diff --git a/Atari/interrupts.asm b/Atari/interrupts.asm index f3ea4be..602902a 100644 --- a/Atari/interrupts.asm +++ b/Atari/interrupts.asm @@ -46,7 +46,9 @@ EndOfDLI_Gr Subtitle lda #0 sta COLPF2 - lda #4 + lda random + and #%00000011 + ora #%00010000 sta COLPF1 bne DLIinterruptGraph.EndOfDLI_Gr .endp diff --git a/Atari/textproc.asm b/Atari/textproc.asm index 506222a..947c3c7 100644 --- a/Atari/textproc.asm +++ b/Atari/textproc.asm @@ -69,12 +69,6 @@ mva #0 OptionsY OptionsMainLoop - lda RandomMountains - sta OptionsHere+288 - lda WindChangeInRound - sta OptionsHere+128 - lda FastSoilDown - sta OptionsHere+88 jsr OptionsInversion jsr getkey @@ -173,6 +167,15 @@ NoGradientLoop ; inversing selected option (cursor) ;-------- .proc OptionsInversion + + ; Additional option symbols + lda RandomMountains + sta OptionsHere+288 + lda WindChangeInRound + sta OptionsHere+128 + lda FastSoilDown + sta OptionsHere+88 + YPos = temp2 XPos = temp2+1 optionWidth = 6 diff --git a/scorch.asm b/scorch.asm index 4fa5d1c..48d3054 100644 --- a/scorch.asm +++ b/scorch.asm @@ -28,7 +28,7 @@ ;--------------------------------------------------- .macro build - dta d"1.38" ; number of this build (4 bytes) + dta d"1.40" ; number of this build (4 bytes) .endm .macro RMTSong diff --git a/scorch.bin b/scorch.bin index 1b0c760..992f637 100644 Binary files a/scorch.bin and b/scorch.bin differ diff --git a/scorch.xex b/scorch.xex index 23f39f1..0648bdc 100644 Binary files a/scorch.xex and b/scorch.xex differ diff --git a/scorch_cart.xex b/scorch_cart.xex index 14d74f4..94e7527 100644 Binary files a/scorch_cart.xex and b/scorch_cart.xex differ