Commit a150e59 1 parent b2453fe commit a150e59 Copy full SHA for a150e59
File tree 1 file changed +7
-8
lines changed
goal_src/jak2/pc/features
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 21
21
(initialize! *game-info* ' game (the-as game-save #f) " game-start" ))
22
22
(((speedrun-category newgame-heromode))
23
23
(initialize! *game-info* ' game (the-as game-save #f) " game-start-hero" )))
24
+
25
+ (if (!= -1 (-> *game-info* auto-save-which))
26
+ (set! (-> *setting-control* user-default auto-save) #t))
27
+
24
28
(none))
25
29
26
30
(defmethod enforce-settings! ((this speedrun-info))
142
146
((= *master-mode* ' menu)
143
147
(set-master-mode ' game)
144
148
(set! (-> this draw-menu?) #f)))
145
- (logclear! (-> *cpad-list* cpads 0 button0-abs 0 ) (pad-buttons l1))
146
- (logclear! (-> *cpad-list* cpads 0 button0-rel 0 ) (pad-buttons l1))
147
- (logclear! (-> *cpad-list* cpads 0 button0-abs 0 ) (pad-buttons r1))
148
- (logclear! (-> *cpad-list* cpads 0 button0-rel 0 ) (pad-buttons r1))
149
+ (cpad-clear! 0 l1 r1)
149
150
; ; Track whether or not the menu was opened with start or select...
150
151
(cond
151
152
((cpad-hold? 0 select)
152
- (logclear! (-> *cpad-list* cpads 0 button0-abs 0 ) (pad-buttons select))
153
- (logclear! (-> *cpad-list* cpads 0 button0-rel 0 ) (pad-buttons select))
153
+ (cpad-clear! 0 select)
154
154
(set! (-> this opened-with-start?) #f))
155
155
((cpad-hold? 0 start)
156
- (logclear! (-> *cpad-list* cpads 0 button0-abs 0 ) (pad-buttons start))
157
- (logclear! (-> *cpad-list* cpads 0 button0-rel 0 ) (pad-buttons start))
156
+ (cpad-clear! 0 start)
158
157
(set! (-> this opened-with-start?) #t)))
159
158
(set! (-> this ignore-menu-toggle?) #t))
160
159
(when (-> this draw-menu?)
You can’t perform that action at this time.
0 commit comments