From 42e3b7f89cdc21bb9e9c1a09799c1105ee14cca9 Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Sat, 30 Sep 2023 21:40:00 -0600 Subject: [PATCH] g/j2: don't force auto-save on in jak 2 when starting a speedrun (#3048) --- goal_src/jak2/pc/features/speedruns.gc | 3 --- goal_src/jak2/pc/pckernel.gc | 1 - 2 files changed, 4 deletions(-) diff --git a/goal_src/jak2/pc/features/speedruns.gc b/goal_src/jak2/pc/features/speedruns.gc index bacc566454f..b84ebe1a157 100644 --- a/goal_src/jak2/pc/features/speedruns.gc +++ b/goal_src/jak2/pc/features/speedruns.gc @@ -20,9 +20,6 @@ (initialize! *game-info* 'game (the-as game-save #f) "game-start")) (((speedrun-category newgame-heromode)) (initialize! *game-info* 'game (the-as game-save #f) "game-start-hero"))) - ;; enable auto saving by default, no downside on PC - ;; this has to come after the `initialize!` call as it sets it to false! - (set! (-> *setting-control* user-default auto-save) #t) (none)) (defmethod enforce-settings! speedrun-info ((this speedrun-info)) diff --git a/goal_src/jak2/pc/pckernel.gc b/goal_src/jak2/pc/pckernel.gc index e150c38b9f8..ba5c72dcacf 100644 --- a/goal_src/jak2/pc/pckernel.gc +++ b/goal_src/jak2/pc/pckernel.gc @@ -138,7 +138,6 @@ (defun vector3-copy!! ((dest vector) (src vector)) "copy just the xyz fields of src into dest" - (declare (print-asm)) (rlet ((vf0 :class vf) (dest-vf :class vf) (src-vf :class vf))