Skip to content

Commit

Permalink
Remove debugging flags
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJoeSmo committed Jun 1, 2024
1 parent ca8ce1c commit 844f4c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config.asm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
; Enemy Definitions
INCLUDE_REX = 1
INCLUDE_BUMPTY = 1
INCLUDE_REX = 0
INCLUDE_BUMPTY = 0
INCLUDE_THWIMP = 1

; Levels
Expand All @@ -10,8 +10,8 @@ INCLUDE_DEMO_LEVELS = 0
;----------------------
; Properties
IS_EXPANDED_ROM = 0 || INCLUDE_REX || INCLUDE_BUMPTY || INCLUDE_THWIMP
NUMBER_OF_PRG_BANKS = 32 ;16 + (16 * IS_EXPANDED_ROM)
NUMBER_OF_CHR_BANKS = 32 ;16 + (16 * IS_EXPANDED_ROM)
NUMBER_OF_PRG_BANKS = 16 + (16 * IS_EXPANDED_ROM)
NUMBER_OF_CHR_BANKS = 16 + (16 * IS_EXPANDED_ROM)
UNUSED_EXTENDED_CHR_BANKS = 128 - (INCLUDE_REX != 0) - (INCLUDE_BUMPTY != 0) - (INCLUDE_THWIMP != 0)
KEEP_USED_LEVELS = !(INCLUDE_TEST_LEVELS || INCLUDE_DEMO_LEVELS)

Expand Down

0 comments on commit 844f4c8

Please sign in to comment.