Skip to content

Commit

Permalink
Preparations for initial release; Fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
JorelAli committed Apr 8, 2018
1 parent 5e9cf0a commit 42d6e6c
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export OUTPUT := $(CURDIR)/$(TARGET)
$(BUILD):
@[ -d $@ ] || mkdir -p $@
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
@cp doodlejump.dol ./doodlejumpwii/boot.dol
@cp -rf doodlejump.dol ./doodlejumpwii/boot.dol

#---------------------------------------------------------------------------------
clean:
Expand Down
Binary file modified doodlejump.dol
Binary file not shown.
Binary file modified doodlejump.elf
Binary file not shown.
Binary file added doodlejumpwii.zip
Binary file not shown.
Binary file modified doodlejumpwii/boot.dol
Binary file not shown.
4 changes: 2 additions & 2 deletions source/doodlejump.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
#define GAME_STATE_CHANGE_FREQ 500 //How many points the player must earn to change the state of the game

//Misc
#define DEBUG_MODE 1 //Debug mode (0 = off, 1 = on)
#define CHEAT_MODE 1 //Cheat mode (0 = off, 1 = on)
#define DEBUG_MODE 0 //Debug mode (0 = off, 1 = on)
#define CHEAT_MODE 0 //Cheat mode (0 = off, 1 = on)
//---------------------------------------------------------------------------------

//ENUM DECLARATION ----------------------------------------------------------------
Expand Down

0 comments on commit 42d6e6c

Please sign in to comment.