From 1c3afef16419c4b20a1b755f511b43b0880ac278 Mon Sep 17 00:00:00 2001 From: slayercio Date: Tue, 18 Nov 2025 19:56:17 +0100 Subject: [PATCH] feat: added native dispatcher impl --- src/impl/dispatcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/impl/dispatcher.cpp b/src/impl/dispatcher.cpp index b12e09b..ac2a1a3 100644 --- a/src/impl/dispatcher.cpp +++ b/src/impl/dispatcher.cpp @@ -11,7 +11,7 @@ namespace fxn { void NativeDispatcher(fxn::NativeContext* context, std::uint64_t nativeHash) { - + FxnManager::DispatchNative(context, nativeHash); } void* CreateNativeDispatcher(std::uint64_t nativeHash)