From 17a330792f0d07ec484874f8063fec1e7cf6da7e Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Sun, 4 Jan 2026 12:27:37 +0100 Subject: [PATCH] tiles: Added comment to tile banks indicating that they were generated by a tool --- tiles/bank8000.inc | 1 + tiles/bank8800.inc | 1 + tiles/bank8C00.inc | 1 + tiles/bank9000.inc | 1 + tools/png2chr.py | 3 +++ 5 files changed, 7 insertions(+) diff --git a/tiles/bank8000.inc b/tiles/bank8000.inc index 6bd96a6..1b8bb0b 100644 --- a/tiles/bank8000.inc +++ b/tiles/bank8000.inc @@ -1,3 +1,4 @@ +; this tileset was generated by png2chr.py ; tile 0 .chr 33111111 .chr 32333311 diff --git a/tiles/bank8800.inc b/tiles/bank8800.inc index 6939633..3e58270 100644 --- a/tiles/bank8800.inc +++ b/tiles/bank8800.inc @@ -1,3 +1,4 @@ +; this tileset was generated by png2chr.py ; tile 0 .chr 32130000 .chr 13330000 diff --git a/tiles/bank8C00.inc b/tiles/bank8C00.inc index 78cd9c3..059c555 100644 --- a/tiles/bank8C00.inc +++ b/tiles/bank8C00.inc @@ -1,3 +1,4 @@ +; this tileset was generated by png2chr.py ; tile 0 .chr 11111111 .chr 11111111 diff --git a/tiles/bank9000.inc b/tiles/bank9000.inc index 6bd96a6..1b8bb0b 100644 --- a/tiles/bank9000.inc +++ b/tiles/bank9000.inc @@ -1,3 +1,4 @@ +; this tileset was generated by png2chr.py ; tile 0 .chr 33111111 .chr 32333311 diff --git a/tools/png2chr.py b/tools/png2chr.py index 29c0b8e..f7c3af6 100755 --- a/tools/png2chr.py +++ b/tools/png2chr.py @@ -76,6 +76,9 @@ def tile16(src, d): sys.exit(-1) print("") + +print("; this tileset was generated by png2chr.py") + if DW == 8: tile(src, 8) else: -- 2.30.2