Instrument FIFA17 SBC completion dispatch

This commit is contained in:
funman300
2026-08-18 20:20:00 +00:00
parent 1cd4f18e92
commit 6cdb45e482
5 changed files with 830 additions and 242 deletions
+2 -4
View File
@@ -79,12 +79,10 @@ unsafe extern "system" fn worker(_: *mut core::ffi::c_void) -> u32 {
));
dump_modules();
write_log("fifa17: worker complete (injection healthy)\n");
// SBC render intervention (inert unless OPENFUT_SBC_HOOK=1). Spawns its own deferred
// worker that waits for CardsDLL to load. See sbc_hook.rs / docs/sbc-hook-dll-spec.md.
// Every SBC detour is deferred and inert unless its exact environment gate is `1`.
crate::sbc_hook::install();
// Passive transaction tracing has a separate kill switch from cache resolution.
// It currently fails closed until safe relocating trampolines are proven.
crate::sbc_trace::install();
crate::sbc_dispatch::install();
crate::sbc_request_trace::install();
0
}