summaryrefslogtreecommitdiff
path: root/scrape-codex.py
diff options
context:
space:
mode:
Diffstat (limited to 'scrape-codex.py')
-rw-r--r--scrape-codex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scrape-codex.py b/scrape-codex.py
index 255195e..931c648 100644
--- a/scrape-codex.py
+++ b/scrape-codex.py
@@ -143,8 +143,8 @@ def grab(s, n):
image, width, height = load_image(fn)
if image:
canvas.paste(image, (x, y))
- y += height
- x += width
+ y += 256
+ x += 256
canvas.save(out_fn)
if __name__ == '__main__':