[decomp] game-info (#779)

* support more process stuff

* more of game info

* add ref file

* progress on save
This commit is contained in:
water111
2021-08-22 20:12:47 -04:00
committed by GitHub
parent 30d1e1d6c9
commit 403bb5f4de
117 changed files with 6234 additions and 2243 deletions
+8
View File
@@ -1828,6 +1828,14 @@ std::string fixed_operator_to_string(FixedOperatorKind kind) {
return "l32-false-check";
case FixedOperatorKind::VECTOR_3_DOT:
return "vector-dot";
case FixedOperatorKind::PROCESS_TO_PPOINTER:
return "process->ppointer";
case FixedOperatorKind::PPOINTER_TO_HANDLE:
return "ppointer->handle";
case FixedOperatorKind::PROCESS_TO_HANDLE:
return "process->handle";
case FixedOperatorKind::PPOINTER_TO_PROCESS:
return "ppointer->process";
default:
assert(false);
return "";