increase max minimap icons 64 -> 256 (#2826)

Some missions add way too many icons so the limit is reached. It seems
safe to increase by a large amount.

Fixes #2779
This commit is contained in:
ManDude 2023-07-11 22:14:42 +01:00 committed by GitHub
parent 95d706e339
commit 33858cbae6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -834,7 +834,8 @@
)
(let ((gp-0 *minimap*))
(set! (-> gp-0 engine) (new 'global 'engine-minimap '*minimap* 64 connection-minimap))
;; note : minimap engine connections raised for pc port
(set! (-> gp-0 engine) (new 'global 'engine-minimap '*minimap* (#if PC_PORT 256 64) connection-minimap))
(countdown (v1-7 6)
(set! (-> gp-0 trail v1-7 used-by) #f)
)