diff --git a/goal_src/jak2/engine/ui/hud.gc b/goal_src/jak2/engine/ui/hud.gc index e181ad4d9..4bcd99e92 100644 --- a/goal_src/jak2/engine/ui/hud.gc +++ b/goal_src/jak2/engine/ui/hud.gc @@ -588,10 +588,12 @@ (* (-> this icons v1-55 scale-x) (-> *video-params* relative-x-scale)) 1.0 ) - (if (-> *blit-displays-work* horizontal-flip-flag) - (set! (-> this icons v1-55 icon 0 root trans x) (the float (- 256 (-> this icons v1-55 pos 0)))) - (set! (-> this icons v1-55 icon 0 root trans x) (the float (+ (-> this icons v1-55 pos 0) -256))) - ) + ;; og:preserve-this not needed with how mirror mode is currently being done + ;; (if (-> *blit-displays-work* horizontal-flip-flag) + ;; (set! (-> this icons v1-55 icon 0 root trans x) (the float (- 256 (-> this icons v1-55 pos 0)))) + ;; (set! (-> this icons v1-55 icon 0 root trans x) (the float (+ (-> this icons v1-55 pos 0) -256))) + ;; ) + (set! (-> this icons v1-55 icon 0 root trans x) (the float (+ (-> this icons v1-55 pos 0) -256))) (set! (-> this icons v1-55 icon 0 root trans y) (the float (* (+ (-> this icons v1-55 pos 1) -208) 2))) (set! (-> this icons v1-55 icon 0 root trans z) (the float (-> this icons v1-55 pos 2))) )