Skip to content

Commit

Permalink
Add fall back condition (#3452)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zedb0T authored Apr 6, 2024
1 parent 93afb02 commit c5357f7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions goal_src/jak1/pc/progress-pc.gc
Original file line number Diff line number Diff line change
Expand Up @@ -864,17 +864,15 @@
*main-options-secrets*
*main-options-pc*))
(set! (-> *options-remap* (progress-screen game-settings)) *game-options-pc*)
(set! (-> *options-remap* (progress-screen graphic-settings)) *graphic-options-pc*)
(let ((max-refresh-rate (pc-get-active-display-refresh-rate)))
(cond
((> max-refresh-rate 100)
(set! (-> *options-remap* (progress-screen graphic-settings)) *graphic-options-pc*)
(set! *carousell-frame-rate* *carousell-frame-rate-150fps*)
)
((> max-refresh-rate 60)
(set! (-> *options-remap* (progress-screen graphic-settings)) *graphic-options-pc*)
(set! *carousell-frame-rate* *carousell-frame-rate-100fps*)
)
))
)))

(set! (-> *options-remap* (progress-screen sound-settings)) *sound-options-pc*)
(set! (-> *options-remap* (progress-screen memcard-no-space)) *ok-options*)
Expand Down

0 comments on commit c5357f7

Please sign in to comment.