Actually use rgbds 0.5.0

This commit is contained in:
Rangi 2021-04-17 19:16:12 -04:00
parent dd690920c9
commit 955e4eddf8
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ os:
install:
- |-
( cd
git clone -b v0.4.2 --depth=1 https://github.com/gbdev/rgbds
git clone -b v0.5.0 --depth=1 https://github.com/gbdev/rgbds
sudo make -C rgbds install
rm -rf rgbds
)

View file

@ -82,7 +82,7 @@ for objfile in objects:
elif magic == b'RGB9':
obj_ver = 10 + unpack_file("<I", f)[0]
if obj_ver not in [6, 10, 11, 12, 13, 15, 16]:
if obj_ver not in [6, 10, 11, 12, 13, 15, 16, 17]:
print("Error: File '%s' is of an unknown format." % objfile, file=stderr)
exit(1)