Files
jak-project/decompiler/IR2
ManDude 77242bd12e [jak2] script-eval macro (#2315)
turns
```lisp
      (eval! (new 'stack 'script-context (process->ppointer self) self (the-as vector #f)) '(teleport))
      (eval! (new 'stack 'script-context (process->ppointer self) self (the-as vector #f)) (-> arg0 on-goto))
```
into
```lisp
      (script-eval '(teleport))
      (script-eval (-> arg0 on-goto))
```
2023-03-11 10:45:16 -05:00
..
2023-01-01 12:11:18 -05:00
2022-10-29 16:08:04 -04:00
2022-10-15 18:21:17 -04:00
2022-10-15 18:21:17 -04:00
2022-10-29 16:08:04 -04:00