From f388898d7b3f1787d418ba410fee1b2199ea5262 Mon Sep 17 00:00:00 2001 From: Matt Dallmeyer <2515356+dallmeyer@users.noreply.github.com> Date: Mon, 20 Feb 2023 17:49:57 -0700 Subject: [PATCH] Speedrun verification text cleanup (#2229) We only draw this text to the screen if we're in speedrunner mode anyway, so the `#t` flag on this line doesn't really add any value imo https://github.com/open-goal/jak-project/blob/b130b2eac27966c43f6816ee604a3a93a67e82fa/goal_src/jak1/pc/features/speedruns.gc#L248-L255 ![image](https://user-images.githubusercontent.com/2515356/220177466-4ecb8376-7953-4161-a6ca-a300b6978d3e.png) --- goal_src/jak1/pc/features/speedruns.gc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/goal_src/jak1/pc/features/speedruns.gc b/goal_src/jak1/pc/features/speedruns.gc index cea536df55..b126022e24 100644 --- a/goal_src/jak1/pc/features/speedruns.gc +++ b/goal_src/jak1/pc/features/speedruns.gc @@ -250,9 +250,8 @@ (-> *speedrun-info* should-display?)) (with-dma-buffer-add-bucket ((buf (-> (current-frame) global-buf)) (bucket-id debug-no-zbuf)) - (draw-string-xy (string-format "OpenGOAL Version: ~S ~%Speedrun mode: ~A ~%Category: ~S ~%Cutscene Skips ~A" + (draw-string-xy (string-format "Speedrunner Mode ~%OpenGOAL Version: ~S ~%Category: ~S ~%Cutscene Skips ~A" *pc-settings-built-sha* - (-> *pc-settings* speedrunner-mode?) (enum->string speedrun-category (-> *speedrun-info* category)) (-> *pc-settings* skip-movies?)) buf 0 (- 220 (* 8 4)) (font-color flat-yellow) (font-flags shadow kerning))))