From 8acf4fcf8bfac6d15ca2e5e3179b7518baa0488c Mon Sep 17 00:00:00 2001 From: m Date: Wed, 18 Jun 2025 09:00:21 -0500 Subject: [PATCH] mods: allow loading of unsigned fastfiles --- src/client/component/mods.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/client/component/mods.cpp b/src/client/component/mods.cpp index 8590779..ad09060 100644 --- a/src/client/component/mods.cpp +++ b/src/client/component/mods.cpp @@ -189,6 +189,9 @@ namespace mods // Load mod.ff utils::hook::call(0x1405A562A, db_load_x_assets_stub); // R_LoadGraphicsAssets According to myself but I don't remember where I got it from + // Allow loading of unsigned fastfiles + utils::hook::nop(0x1402427A5, 2); // DB_InflateInit + command::add("loadmod", [](const command::params& params) -> void { if (params.size() != 2)