Skip to content

Commit

Permalink
Use rgbds 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Rangi42 committed Nov 24, 2021
1 parent 2fc6cd6 commit fb18368
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get install make python gcc git bison
git clone -b v0.5.1 --depth=1 https://github.com/gbdev/rgbds
git clone -b v0.5.2 --depth=1 https://github.com/gbdev/rgbds
pushd rgbds
sudo make install
popd
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cd polishedcrystal
mkdir rgbds
```

Then download [**rgbds**](https://rgbds.gbdev.io/). If you're building Polished Crystal 2.2.0, get rgbds version 0.3.9. If you're building the 3.0.0 beta, you'll need version **0.5.1**. Extract the archive and put all the .exe and .dll files in polishedcrystal/rgbds.
Then download [**rgbds**](https://rgbds.gbdev.io/). If you're building Polished Crystal 2.2.0, get rgbds version 0.3.9. If you're building the 3.0.0 beta, you'll need version **0.5.2**. Extract the archive and put all the .exe and .dll files in polishedcrystal/rgbds.

To build **polishedcrystal.gbc**:

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ else
RGBDS_DIR =
endif

RGBASM_FLAGS = -E -Weverything
RGBASM_FLAGS = -E -Weverything -Wnumeric-string=2 -Wtruncation=1
RGBLINK_FLAGS = -n $(ROM_NAME).sym -m $(ROM_NAME).map -l layout.link -p $(FILLER)
RGBFIX_FLAGS = -csjv -t $(TITLE) -i $(MCODE) -n $(ROMVERSION) -p $(FILLER) -k 01 -l 0x33 -m 0x10 -r 3

Expand Down
4 changes: 2 additions & 2 deletions rgbdscheck.asm
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
MAJOR EQU 0
MINOR EQU 5
PATCH EQU 1
PATCH EQU 2
RC EQU 0

wrong_rgbds: MACRO
fail "polishedcrystal requires rgbds v0.5.1 or newer."
fail "polishedcrystal requires rgbds v0.5.2 or newer."
ENDM

if !DEF(__RGBDS_MAJOR__) || !DEF(__RGBDS_MINOR__) || !DEF(__RGBDS_PATCH__)
Expand Down

0 comments on commit fb18368

Please sign in to comment.