Skip to content

Commit

Permalink
Keep default behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
etdv-thevoid committed May 7, 2024
1 parent a0962e5 commit 19f645e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,14 @@ endif

# Run `make` run with `GFX=#` to choose GFX
# GFX=2: Gen 2 Graphics
# Default: Gen 1 Graphics
# GFX=1: Gen 1 Graphics
# Default: Gen 2 Graphics
ifeq ($(GFX),2)
RGBASMFLAGS += -D _GEN_2_GRAPHICS
else
else ifeq ($(GFX),1)
RGBASMFLAGS +=
else
RGBASMFLAGS += -D _GEN_2_GRAPHICS
endif

$(pokered_obj): RGBASMFLAGS += -D _RED
Expand Down

0 comments on commit 19f645e

Please sign in to comment.