Files
jak-project/goal_src/jak1/engine/load/decomp-h.gc
T
ManDude b74399ed57 rework goal_src structure for jak 1 a bit (#1615)
* move files

* update game.gp
2022-07-05 16:00:09 -04:00

19 lines
520 B
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: decomp-h.gc
;; name in dgo: decomp-h
;; dgos: GAME, ENGINE
;; temporary storage for visibility data decompression.
;; this is stored on the scratchpad.
(deftype decomp-work (structure)
((buffer0 uint8 2048 :offset-assert 0)
(buffer1 uint8 2048 :offset-assert 2048)
(indices uint16 2048 :offset-assert 4096)
(temp-indices uint16 2048 :offset-assert 8192)
)
:method-count-assert 9
:size-assert #x3000
:flag-assert #x900003000
)