mirror of
https://github.com/open-goal/jak-project
synced 2026-08-03 17:02:47 -04:00
fix float->int cast suppression + minor cleanup of a couple files (#1375)
* fix float->int cast suppression + minor cleanup of a couple files * add missing cutscenes
This commit is contained in:
+21
-21
@@ -324,7 +324,7 @@
|
||||
(set! (-> a1-2 message) 'query)
|
||||
(set! (-> a1-2 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-2 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-2)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-2))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -346,7 +346,7 @@
|
||||
(set! (-> a1-2 message) 'query)
|
||||
(set! (-> a1-2 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-2 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-2)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-2))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -464,7 +464,7 @@
|
||||
(set! (-> a1-0 message) 'query)
|
||||
(set! (-> a1-0 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-0 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-0)) 45)
|
||||
(>= (the int (the float (send-event-function *target* a1-0))) 45)
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -501,7 +501,7 @@
|
||||
(set! (-> a1-4 message) 'query)
|
||||
(set! (-> a1-4 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-4 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-4)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-4))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -526,7 +526,7 @@
|
||||
(set! (-> a1-4 message) 'query)
|
||||
(set! (-> a1-4 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-4 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-4)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-4))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -551,7 +551,7 @@
|
||||
(set! (-> a1-4 message) 'query)
|
||||
(set! (-> a1-4 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-4 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-4)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-4))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -563,7 +563,7 @@
|
||||
(set! (-> a1-8 message) 'query)
|
||||
(set! (-> a1-8 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-8 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-8)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-8))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -588,7 +588,7 @@
|
||||
(set! (-> a1-4 message) 'query)
|
||||
(set! (-> a1-4 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-4 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-4)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-4))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -600,7 +600,7 @@
|
||||
(set! (-> a1-8 message) 'query)
|
||||
(set! (-> a1-8 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-8 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-8)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-8))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -1100,7 +1100,7 @@
|
||||
(set! (-> a1-3 message) 'query)
|
||||
(set! (-> a1-3 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-3 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-3)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-3))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -1123,7 +1123,7 @@
|
||||
(set! (-> a1-3 message) 'query)
|
||||
(set! (-> a1-3 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-3 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-3)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-3))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -1224,7 +1224,7 @@
|
||||
(set! (-> a1-3 message) 'query)
|
||||
(set! (-> a1-3 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-3 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-3)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-3))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -1247,7 +1247,7 @@
|
||||
(set! (-> a1-3 message) 'query)
|
||||
(set! (-> a1-3 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-3 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-3)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-3))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -1839,7 +1839,7 @@
|
||||
(set! (-> a1-3 message) 'query)
|
||||
(set! (-> a1-3 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-3 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-3)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-3))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -1862,7 +1862,7 @@
|
||||
(set! (-> a1-3 message) 'query)
|
||||
(set! (-> a1-3 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-3 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-3)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-3))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -1885,7 +1885,7 @@
|
||||
(set! (-> a1-3 message) 'query)
|
||||
(set! (-> a1-3 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-3 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-3)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-3))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -1908,7 +1908,7 @@
|
||||
(set! (-> a1-3 message) 'query)
|
||||
(set! (-> a1-3 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-3 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-3)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-3))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -2107,7 +2107,7 @@
|
||||
(set! (-> a1-3 message) 'query)
|
||||
(set! (-> a1-3 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-3 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-3)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-3))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -2130,7 +2130,7 @@
|
||||
(set! (-> a1-3 message) 'query)
|
||||
(set! (-> a1-3 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-3 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-3)) (+ (get-reminder arg0 1) 3))
|
||||
(>= (the int (the float (send-event-function *target* a1-3))) (+ (get-reminder arg0 1) 3))
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -5120,7 +5120,7 @@
|
||||
(set! (-> a1-0 message) 'query)
|
||||
(set! (-> a1-0 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-0 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-0)) 20)
|
||||
(>= (the int (the float (send-event-function *target* a1-0))) 20)
|
||||
)
|
||||
)
|
||||
)
|
||||
@@ -5233,7 +5233,7 @@
|
||||
(set! (-> a1-0 message) 'query)
|
||||
(set! (-> a1-0 param 0) (the-as uint 'pickup))
|
||||
(set! (-> a1-0 param 1) (the-as uint 6))
|
||||
(>= (the int (send-event-function *target* a1-0)) 72)
|
||||
(>= (the int (the float (send-event-function *target* a1-0))) 72)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user