diff options
author | mid-kid <esteve.varela@gmail.com> | 2020-02-21 01:48:17 +0100 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2020-02-21 01:48:17 +0100 |
commit | 18013b468ad51c5a4979187c9608ba7d5ba3237a (patch) | |
tree | 8c76fb1dca2b736bc54c11dff4c0156a180e3be4 /tools/unnamed.py | |
parent | 65a780994f87445f2bf8d9761f7dbf3c1389648a (diff) |
Fix tools/unnamed.py for new rgbds object format
Diffstat (limited to 'tools/unnamed.py')
-rwxr-xr-x | tools/unnamed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/unnamed.py b/tools/unnamed.py index 2c7cdd389..f404e6698 100755 --- a/tools/unnamed.py +++ b/tools/unnamed.py @@ -81,7 +81,7 @@ for objfile in objects: elif magic == b'RGB9': obj_ver = 10 + unpack_file("<I", f)[0] - if obj_ver not in [6, 10]: + if obj_ver not in [6, 10, 11]: print("Error: File '%s' is of an unknown format." % objfile, file=stderr) exit(1) |