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))