Skip to content

Commit

Permalink
increase max minimap icons 64 -> 256 (#2826)
Browse files Browse the repository at this point in the history
Some missions add way too many icons so the limit is reached. It seems
safe to increase by a large amount.

Fixes #2779
  • Loading branch information
ManDude committed Jul 11, 2023
1 parent 95d706e commit 33858cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion goal_src/jak2/engine/ui/minimap.gc
Expand Up @@ -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)
)
Expand Down

0 comments on commit 33858cb

Please sign in to comment.