mirror of
https://github.com/open-goal/jak-project
synced 2026-08-04 09:09:52 -04:00
a3e004f475
Co-authored-by: Hat Kid <6624576+Hat-Kid@users.noreply.github.com>
19 lines
566 B
Common Lisp
19 lines
566 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: wind-work.gc
|
|
;; name in dgo: wind-work
|
|
;; dgos: ENGINE, GAME
|
|
|
|
;; DECOMP BEGINS
|
|
|
|
(define *wind-work* (new 'static 'wind-work
|
|
:wind-const (new 'static 'vector :data (new 'static 'array float 4 0.5 100.0 0.0166 -1.0))
|
|
)
|
|
)
|
|
|
|
;; og:preserve-this
|
|
(set! (-> *wind-work* to-ptrs 0) (the-as uint (&+ *fake-scratchpad-data* 8192)))
|
|
(set! (-> *wind-work* to-ptrs 1) (the-as uint (&+ *fake-scratchpad-data* 4096)))
|
|
(set! (-> *wind-work* to-ptrs 2) (the-as uint *fake-scratchpad-data*))
|