Files
jak-project/goal_src/engine/ui/progress/progress.gc
T
water111 656489e942 [decomp] Clean up - part 2 (#687)
* temp

* temp2

* basic case support

* working for or without else

* support more cases

* clean up to drawable headers

* ocean

* format json
2021-07-11 16:35:25 -04:00

18 lines
411 B
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: progress.gc
;; name in dgo: progress
;; dgos: GAME, ENGINE
(defmethod relocate game-count-info ((this game-count-info) (offset int))
"Load in the game-count-info. This is a bit of a hack."
(set! *game-counts* this)
)
(defmethod hidden? progress ((obj progress))
(or (not *progress-process*)
(= (-> *progress-process* 0 in-out-position) 4096)
)
)