diff options
author | Juan J. MartÃnez <jjm@usebox.net> | 2022-12-11 00:03:57 +0000 |
---|---|---|
committer | Juan J. MartÃnez <jjm@usebox.net> | 2022-12-11 00:03:57 +0000 |
commit | 4f4e4d92c83795bd2283ed7ff7f61e56c583ad9c (patch) | |
tree | 1b79c49fc28624942ff9e2d236a59ef2530ef818 /tools | |
parent | 31dcfa8eb9c3f978151fd9cea677ebccbba51c49 (diff) | |
parent | bd4fd14c326d8b59828a6d4a2502922398adf04a (diff) | |
download | ubox-msx-lib-4f4e4d92c83795bd2283ed7ff7f61e56c583ad9c.tar.gz ubox-msx-lib-4f4e4d92c83795bd2283ed7ff7f61e56c583ad9c.zip |
Merge branch 'main' into 'main'
Typo
See merge request reidrac/ubox-msx-lib!34
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/png2tiles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/png2tiles.py b/tools/png2tiles.py index 55e7c53..3d295fa 100755 --- a/tools/png2tiles.py +++ b/tools/png2tiles.py @@ -94,7 +94,7 @@ def read_image(image_name, out, color): data[x + i + ((y + j) * w)] for j in range(DEF_H) for i in range(DEF_W) ] - # get the attibutes of the tile + # get the attributes of the tile # FIXME: this may not be right for i in range(0, len(tile), DEF_W): cols = list(sorted(set(tile[i : i + DEF_W]))) |