From 51f70bc8107421ebf44c00cdf556c60c8f45083c Mon Sep 17 00:00:00 2001 From: HJfod <60038575+HJfod@users.noreply.github.com> Date: Sat, 21 Jan 2023 16:42:39 +0200 Subject: [PATCH] fix getMod being undefined because silly me marked it inline --- entry.cpp | 1 + loader/include/Geode/loader/ModEvent.hpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/entry.cpp b/entry.cpp index 937e32ca..cf19cb70 100644 --- a/entry.cpp +++ b/entry.cpp @@ -1,3 +1,4 @@ + #include #include diff --git a/loader/include/Geode/loader/ModEvent.hpp b/loader/include/Geode/loader/ModEvent.hpp index 496a66e8..15c63d7c 100644 --- a/loader/include/Geode/loader/ModEvent.hpp +++ b/loader/include/Geode/loader/ModEvent.hpp @@ -6,7 +6,7 @@ namespace geode { class Mod; - inline Mod* getMod(); + Mod* getMod(); enum class ModEventType { Loaded,