mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
Actually use rgbds 0.5.0
This commit is contained in:
parent
dd690920c9
commit
955e4eddf8
|
@ -5,7 +5,7 @@ os:
|
||||||
install:
|
install:
|
||||||
- |-
|
- |-
|
||||||
( cd
|
( 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
|
sudo make -C rgbds install
|
||||||
rm -rf rgbds
|
rm -rf rgbds
|
||||||
)
|
)
|
||||||
|
|
|
@ -82,7 +82,7 @@ for objfile in objects:
|
||||||
elif magic == b'RGB9':
|
elif magic == b'RGB9':
|
||||||
obj_ver = 10 + unpack_file("<I", f)[0]
|
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)
|
print("Error: File '%s' is of an unknown format." % objfile, file=stderr)
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue