diff --git a/028.bs/.gitignore b/028.bs/.gitignore index 8ac4160..0eb0112 100644 --- a/028.bs/.gitignore +++ b/028.bs/.gitignore @@ -1,2 +1,3 @@ assets/P61.placeholder -bin \ No newline at end of file +bin +save \ No newline at end of file diff --git a/028.bs/background.s b/028.bs/background.s index 4ae1564..d39e684 100644 --- a/028.bs/background.s +++ b/028.bs/background.s @@ -11,14 +11,14 @@ InitialiseBackground: move.l #0,backgroundScrollX move.l backgroundOffscreen,a0 move.l #0,d0 - move.l #256,d1 + move.l #256+10,d1 move.l #0,d2 jsr BlitFillColor jsr WaitVerticalBlank jsr SwitchBuffers move.l backgroundOffscreen,a0 move.l #0,d0 - move.l #256,d1 + move.l #256+10,d1 move.l #0,d2 jsr BlitFillColor rts diff --git a/028.bs/credits.s b/028.bs/credits.s index ed1942f..e464fd5 100644 --- a/028.bs/credits.s +++ b/028.bs/credits.s @@ -92,7 +92,7 @@ Credits: RenderText: lea credits,a1 - move.w #80,d0 + move.w #72,d0 move.w #20,d1 .loop: cmp.b #0,(a1) @@ -109,21 +109,21 @@ RenderText: credits: - dc.b " BLOCKY SKIES " + dc.b " BLOCKY SKIES" dc.b 0 - dc.b " ------------ " + dc.b " ------------" dc.b 0 dc.b " " dc.b 0 - dc.b "GAME DESIGN - NOBODY" + dc.b "GAME DESIGN - CHIPMUNK" dc.b 0 - dc.b "GRAPHICS - NOBODY" + dc.b "GRAPHICS - CHIPMUNK" dc.b 0 dc.b "MUSIC - SOMEBODY" dc.b 0 dc.b "CODE - ALPINE9000" dc.b 0 - dc.b "LEVELS - NOBODY/ALPINE9000" + dc.b "LEVELS - CHIPMUNK/ALPINE9000" dc.b 0 dc.b "TRACKLOADER - PHOTON/SCOOPEX" dc.b 0 @@ -131,9 +131,9 @@ credits: dc.b 0 dc.b " " dc.b 0 - dc.b " THANKS " + dc.b " THANKS" dc.b 0 - dc.b " ------" + dc.b " ------" dc.b 0 dc.b "WIN-UAE - TONI WILEN" dc.b 0 diff --git a/028.bs/joystick.s b/028.bs/joystick.s index 7443e86..049f03c 100644 --- a/028.bs/joystick.s +++ b/028.bs/joystick.s @@ -32,7 +32,10 @@ ReadJoystick: WaitForJoystick: .joystickPressed: jsr ReadJoystick + move.w #5-1,d0 +.debounce: jsr WaitVerticalBlank + dbra d0,.debounce ; I have a bodgy joystick jsr PlayNextSound btst.b #0,joystick bne .joystickPressed