Major overhaul of DebugPrint

This commit is contained in:
2023-09-04 03:21:23 -04:00
parent 57ea8d8574
commit e3c20b3f1e
6 changed files with 262 additions and 53 deletions

View File

@@ -13,7 +13,7 @@ void FLockedWrapper::InitWrapper() {
InitFn init = (InitFn)FPlatformProcess::GetDllExport(DLL, TEXT("init_engine_wrapper"));
if (init != nullptr) {
init(&Lockable.Wrapper);
Lockable.Wrapper.hook_dprint(engineutil::DPrintHook);
Lockable.Wrapper.hook_dprint(DebugPrint::DPrint);
}
}
}