decomp: finish target-racer | target-tube (#1042)

* decomp: finish `target-racer`

target-racing-turn-anim was the `cond` issue here

* decomp: finish `target-tube`

target-tube-turn-anim was the issue here
This commit is contained in:
Tyler Wilding
2022-01-04 23:16:29 -05:00
committed by GitHub
parent b11a45d836
commit 004ecd4fe3
16 changed files with 6886 additions and 1562 deletions
+1 -1
View File
@@ -225,7 +225,7 @@
(load-game! (_type_ game-save) game-save 25)
(clear-text-seen! (_type_ game-text-id) none 26)
(get-death-count (_type_ symbol) int 27)
(get-health-percent-lost (_type_) float 28)
(get-health-percent-lost (_type_ symbol) float 28)
)
)
+1 -1
View File
@@ -1239,6 +1239,6 @@
)
;; definition for method 28 of type game-info
(defmethod get-health-percent-lost game-info ((obj game-info))
(defmethod get-health-percent-lost game-info ((obj game-info) (arg0 symbol))
(* 0.25 (the float (get-death-count obj #f)))
)