From 0af7695e69553916ff442282ecd21717b6d0abfe Mon Sep 17 00:00:00 2001 From: altalk23 <45172705+altalk23@users.noreply.github.com> Date: Wed, 25 Jan 2023 20:24:46 +0300 Subject: [PATCH] add log to adjust --- loader/include/Geode/modify/AsStaticFunction.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/loader/include/Geode/modify/AsStaticFunction.hpp b/loader/include/Geode/modify/AsStaticFunction.hpp index e9570492..69e819bd 100644 --- a/loader/include/Geode/modify/AsStaticFunction.hpp +++ b/loader/include/Geode/modify/AsStaticFunction.hpp @@ -22,6 +22,7 @@ namespace geode::modifier { struct Impl { \ static Return GEODE_CDECL_CALL function(Class* self, Params... params) { \ auto self2 = addresser::rthunkAdjust(Function, self); \ + log::info("adjusted, normal {}, {}", self2, self);\ return self2->Class2::FunctionName_(params...); \ } \ }; \