Better values for effect. 100 Stars on screen 10 different speeds

This commit is contained in:
Pedro de Oliveira 2014-08-21 10:01:22 +01:00
parent e980dd0170
commit 0dca2aed2c
1 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ clr_screen EQU $0daf ; ROM routine to clear the screen
; Speed 1 Byte $1 - $3
; PrevX
; PrevY
MAX_STARS EQU 60
MAX_STARS EQU 100
start
xor a
@ -167,7 +167,7 @@ initRandomX
push hl
push bc
ld d, 1
ld e, 250
ld e, 255
call get_rnd ; Get a random value <= 255
pop bc
pop hl
@ -207,7 +207,7 @@ initRandomSpeed
push hl
push bc
ld d, 1
ld e, 4
ld e, 10
call get_rnd ; Get a random value <= 255
pop bc
pop hl