Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion goal_src/jak1/engine/gfx/hw/display.gc
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
(-> this time-ratio))

;; new constant for use in high FPS scenarios
(defconstant DISPLAY_FPS_RATIO (/ (-> *display* time-factor) 5.0))
(defconstant DISPLAY_FPS_RATIO (/ (* (-> *display* time-factor) (-> *display* time-ratio)) 5.0))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; DISPLAY ENV and DRAW ENV
Expand Down
2 changes: 1 addition & 1 deletion goal_src/jak2/engine/gfx/hw/display.gc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
;(defconstant DMA_BUFFER_DEBUG_SIZE (* 8 1024 1024)) ;; 8M
(defconstant DMA_BUFFER_DEBUG_SIZE (* 12 1024 1024)) ;; expand to 12M because we can

(defconstant DISPLAY_FPS_RATIO (/ (-> *display* time-factor) 5.0))
(defconstant DISPLAY_FPS_RATIO (/ (* (-> *display* time-factor) (-> *display* dog-ratio)) 5.0))

;; DECOMP BEGINS

Expand Down
2 changes: 1 addition & 1 deletion goal_src/jak3/engine/gfx/hw/display.gc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
(defconstant DMA_BUFFER_DEBUG_SIZE (* 8 1024 1024)) ;; 8M
;; (defconstant DMA_BUFFER_DEBUG_SIZE (* 12 1024 1024)) ;; expand to 12M because we can

(defconstant DISPLAY_FPS_RATIO (/ (-> *display* time-factor) 5.0))
(defconstant DISPLAY_FPS_RATIO (/ (* (-> *display* time-factor) (-> *display* dog-ratio)) 5.0))

;; DECOMP BEGINS

Expand Down
Loading