From 116d591c6034ead604ad07dee27ca5c8a335601f Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Sat, 30 May 2015 11:08:26 -0400 Subject: [PATCH] Update shot speed and cooldown timer. --- pewpew.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pewpew.asm b/pewpew.asm index b99dab0..2eeaa77 100644 --- a/pewpew.asm +++ b/pewpew.asm @@ -466,7 +466,7 @@ MaybeShoot: sta 1, X lda playerY sta 2, X - lda #2 ; x-velocity. + lda #6 ; x-velocity. sta 3, X ; Update nextShotPtr. .rept shotSize @@ -479,7 +479,7 @@ MaybeShoot: stx nextShotPtr ; Set cooldown timer. - lda #8 + lda #10 sta shotCooldown ++ rts