mirror of
https://github.com/open-goal/jak-project
synced 2026-07-10 15:14:15 -04:00
c31662ef89
Fixes 2 things: - secrets option on title screen not hidden if no secrets unlocked (missing check, we just always drew it) - off-by-one bug in the "skip over secrets option" logic https://github.com/user-attachments/assets/0f94f310-ca23-4ba8-91d5-7c2c10793c33 This approach mirrors what we did in Jak 2, but feels a bit hacky... I have another branch [here](https://github.com/open-goal/jak-project/compare/master...dallmeyer:jak-project:b/title-secrets?expand=1) which takes the ND approach of just switching between 2 static menus like: ```lisp (if (memcard-unlocked-secrets? #f #f) (set! (-> this current-options) *title-secrets-pc*) (set! (-> this current-options) *title-pc*)) ```