From d8b8316af6ebaa00484b78ef0d7362eb9e1fc57b Mon Sep 17 00:00:00 2001 From: mckinlee Date: Fri, 22 Sep 2023 20:16:24 -0400 Subject: [PATCH] Linux Compile Issue -Added a missing header that was causing a compile issue for linux -Hopefully, it won't crash --- soh/src/code/z_kaleido_scope_call.c | 1 + 1 file changed, 1 insertion(+) diff --git a/soh/src/code/z_kaleido_scope_call.c b/soh/src/code/z_kaleido_scope_call.c index c85a3e80d..12f539011 100644 --- a/soh/src/code/z_kaleido_scope_call.c +++ b/soh/src/code/z_kaleido_scope_call.c @@ -1,5 +1,6 @@ #include "global.h" #include "vt.h" +#include "soh/Enhancements/game-interactor/GameInteractor_Hooks.h" void (*sKaleidoScopeUpdateFunc)(PlayState* play); void (*sKaleidoScopeDrawFunc)(PlayState* play);