Matt Dallmeyer
|
c31662ef89
|
[jak3] Fix secrets option on title screen (#4194)
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*))
```
|
2026-04-09 20:14:43 -04:00 |
|