diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-09 00:59:28 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-09 00:59:28 +0200 |
| commit | fa6f4ab0139b443bae6cdee9980d0f70ed991b0c (patch) | |
| tree | 317f05982ea1be7742a4677c3cb527797a2b4b98 /makefile | |
| parent | 515ebc423e9da14787f0d9ee06549a7e67019deb (diff) | |
| download | hurrycurry-fa6f4ab0139b443bae6cdee9980d0f70ed991b0c.tar hurrycurry-fa6f4ab0139b443bae6cdee9980d0f70ed991b0c.tar.bz2 hurrycurry-fa6f4ab0139b443bae6cdee9980d0f70ed991b0c.tar.zst | |
Increase screenshot resolution
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -50,9 +50,9 @@ target/book/tiles/list: $(TOOLS) $(ALL_DATA) target/book/items/list: $(TOOLS) $(ALL_DATA) @mkdir -p $(dir $@); $(TOOLS) map-items 5star > $@~ && cp $@~ $@ target/book/tiles/done: target/book/tiles/list client/.godot/import-finished - $(CLIENT) --render-tiles ../$< --render-output ../$(dir $@) --render-resolution 256; touch $@ + $(CLIENT) --render-tiles ../$< --render-output ../$(dir $@) --render-resolution 512; touch $@ target/book/items/done: target/book/items/list client/.godot/import-finished - $(CLIENT) --render-items ../$< --render-output ../$(dir $@) --render-resolution 256; touch $@ + $(CLIENT) --render-items ../$< --render-output ../$(dir $@) --render-resolution 512; touch $@ target/book/book.html: target/book/tiles/done target/book/items/done $(BOOK_EXPORT) $(ALL_DATA) $(BOOK_EXPORT) -f html -m 5star > $@~ && cp $@~ $@ |