mirror of
https://github.com/open-goal/jak-project
synced 2026-09-02 10:11:44 -04:00
decomp: generic (#611)
* decomp: Fix casting issue with uint64's from static data * decomp: `generic` * add forward declaration Co-authored-by: water111 <48171810+water111@users.noreply.github.com>
This commit is contained in:
@@ -160,7 +160,10 @@
|
||||
;; definition for method 5 of type type
|
||||
;; INFO: Return type mismatch uint vs int.
|
||||
(defmethod asize-of type ((obj type))
|
||||
(the-as int (logand #xfffffff0 (+ (* (-> obj allocated-length) 4) 43)))
|
||||
(the-as
|
||||
int
|
||||
(logand (the-as uint #xfffffff0) (+ (* (-> obj allocated-length) 4) 43))
|
||||
)
|
||||
)
|
||||
|
||||
;; definition for function basic-type?
|
||||
|
||||
Reference in New Issue
Block a user