diff options
author | Pedro de Medeiros <pedro.medeiros@gmail.com> | 2022-12-10 20:24:02 -0300 |
---|---|---|
committer | Pedro de Medeiros <pedro.medeiros@gmail.com> | 2022-12-10 20:24:02 -0300 |
commit | bd4fd14c326d8b59828a6d4a2502922398adf04a (patch) | |
tree | 1b79c49fc28624942ff9e2d236a59ef2530ef818 /tools/png2tiles.py | |
parent | 31dcfa8eb9c3f978151fd9cea677ebccbba51c49 (diff) | |
download | ubox-msx-lib-bd4fd14c326d8b59828a6d4a2502922398adf04a.tar.gz ubox-msx-lib-bd4fd14c326d8b59828a6d4a2502922398adf04a.zip |
typo
Diffstat (limited to 'tools/png2tiles.py')
-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]))) |