From 2c752ff97820c9c8a3754d8dd246180bf46e60ba Mon Sep 17 00:00:00 2001 From: ManDude <7569514+ManDude@users.noreply.github.com> Date: Mon, 29 Aug 2022 03:25:08 +0100 Subject: [PATCH] also save pc settings on autosave --- goal_src/jak1/engine/game/game-save.gc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/goal_src/jak1/engine/game/game-save.gc b/goal_src/jak1/engine/game/game-save.gc index 89c3cbb8c6..da46bd5692 100644 --- a/goal_src/jak1/engine/game/game-save.gc +++ b/goal_src/jak1/engine/game/game-save.gc @@ -1288,6 +1288,9 @@ (set! (-> self part matrix) (sprite-allocate-user-hvdf)) (cond ((= desired-mode 'auto-save) + ;; also save pc settings. + (with-pc + (commit-to-file *pc-settings*)) (if (not (-> *setting-control* current auto-save)) (go-virtual error (mc-status-code no-auto-save)) )