fix: DebugLog hooks, works now

This commit is contained in:
2024-04-13 18:07:02 +02:00
parent 435bccd6da
commit 33964e3081
5 changed files with 29 additions and 2 deletions

12
user/utils/utils.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "pch-il2cpp.h"
#include "utils.hpp"
#include "helpers.h"
std::string ToString(app::Object* object) {
std::string type = il2cppi_to_string(app::Object_ToString(object, NULL));
if (type == "System.String") {
return il2cppi_to_string((app::String*)object);
}
return type;
}