jak2: add missing inline declaration in vector*! (#4287)

as per the description of #3846 
"Detect use of vector*!, which is **inlined in jak 2** and jak 3."

This function was missing the inline declaration resulting in the
compiled output differing.
This commit is contained in:
tripp
2026-05-30 17:21:25 -04:00
committed by GitHub
parent 4e77d6ea61
commit fd17e337d6
+1
View File
@@ -62,6 +62,7 @@
(defun vector*! ((arg0 vector) (arg1 vector) (arg2 vector))
"Elementwise product. Set w = 1"
(declare (inline))
(rlet ((vf0 :class vf)
(vf4 :class vf)
(vf5 :class vf)