diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-15 20:58:47 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-15 20:58:47 +0100 |
commit | 4b465f9480c848d74f3127638bdce82539cb7604 (patch) | |
tree | c14de076467dc18849de1a73d63e169f3dad80dd /src | |
parent | 31259bbbcddaeecd50bafd8de1a5f1ef1bd7a8a2 (diff) | |
download | gold-mine-run-4b465f9480c848d74f3127638bdce82539cb7604.tar.gz gold-mine-run-4b465f9480c848d74f3127638bdce82539cb7604.zip |
Check we don't go over the max number of entities
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 5815e88..6984376 100644 --- a/src/Makefile +++ b/src/Makefile @@ -35,7 +35,7 @@ $(IMG_OBJS): %.o: ../data/%.png ../tools/pngpix.py $< $@ $(MAP_OBJS): %.o: ../data/%.json - ../tools/map.py $< $@ + ../tools/map.py --max-ents 15 $< $@ $(WAV_OBJS): %.o: ../data/%.wav ../tools/raw.py $< $@ |