Skip to content

Commit

Permalink
Cut level 5, cant fit it with the space available
Browse files Browse the repository at this point in the history
  • Loading branch information
dustmop committed Mar 31, 2017
1 parent b397413 commit f6a6555
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 23 deletions.
9 changes: 0 additions & 9 deletions broom.asm
Expand Up @@ -93,15 +93,6 @@ BroomDraw = BroomExecute::Draw


.proc BroomExplodeIntoStars
; TODO: Temporary, to skip level 5.
.scope SkipStubLevels
lda which_level
cmp #4
bne Next
inc which_level
Next:
.endscope
;
jsr ObjectListGetLast
Loop:
lda object_kind,x
Expand Down
2 changes: 1 addition & 1 deletion include.const.asm
@@ -1,2 +1,2 @@
SWATTER_MAX_SPEED = 5
MAX_LEVEL = 6
MAX_LEVEL = 5
10 changes: 0 additions & 10 deletions level_data.asm
Expand Up @@ -549,10 +549,6 @@ level3_meta:
level4_meta:
.byte 0, 0, $68

level5_meta:
.byte 0, 0, $a8


.segment "DAT2"

.include ".b/level1_data.asm"
Expand All @@ -562,9 +558,3 @@ level5_meta:

no_spawn:
.byte $ff,$ff,$ff,$ff

;.segment "LEVEL0"
;
;level4_meta:
;.byte 0,0
;.byte $a8
3 changes: 0 additions & 3 deletions marque.asm
Expand Up @@ -70,8 +70,6 @@ BOSS_LEVEL = MAX_LEVEL
beq Level3
cmp #4
beq Level4
cmp #5
beq Level5
cmp #BOSS_LEVEL
beq EndBoss
jmp Finale
Expand Down Expand Up @@ -105,7 +103,6 @@ Level3:

; TODO: Messages for levels 4 and 5.
Level4:
Level5:
ldx #MSG_TODO
jsr MsgRender
jmp LevelDone
Expand Down

0 comments on commit f6a6555

Please sign in to comment.