Skip to content

Commit 076f8aa

Browse files
authored
[jak2] fix music player option (#3323)
1 parent 1c00382 commit 076f8aa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

goal_src/jak2/pc/progress/progress-draw-pc.gc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1623,6 +1623,7 @@
16231623

16241624
(defmethod draw-option ((this menu-unlocked-menu-option) (arg0 progress) (arg1 font-context) (arg2 int) (arg3 symbol))
16251625
(let ((secrets (memcard-unlocked-secrets? #t))
1626+
(cheats (-> *pc-settings* cheats-unlocked))
16261627
(alpha (* 2.0 (- 0.5 (-> arg0 menu-transition))))
16271628
)
16281629
(if (< alpha 0.0)
@@ -1687,7 +1688,7 @@
16871688
(print-game-text locked-text arg1 #f 44 (bucket-id progress)))
16881689
)
16891690
(((text-id progress-music-player))
1690-
(if (pc-cheats? (-> *pc-settings* cheats) music-player)
1691+
(if (pc-cheats? cheats music-player)
16911692
(print-game-text available-text arg1 #f 44 (bucket-id progress))
16921693
(print-game-text locked-text arg1 #f 44 (bucket-id progress)))
16931694
)

0 commit comments

Comments
 (0)