From 9c8fb26f8b93c1fed46dc27c895a98bfd7d073fd Mon Sep 17 00:00:00 2001 From: FearlessTobi Date: Wed, 7 Sep 2022 07:09:53 +0200 Subject: [PATCH] Add some includes --- src/Cafe/GraphicPack/GraphicPack2Patches.h | 1 + src/Cafe/HW/Latte/Renderer/Vulkan/VKRBase.h | 1 + src/Cemu/nex/nexFriends.h | 2 ++ src/audio/audioDebuggerWindow.h | 1 + src/input/api/Wiimote/WiimoteMessages.h | 2 ++ src/input/motion/MotionSample.h | 3 ++- 6 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Cafe/GraphicPack/GraphicPack2Patches.h b/src/Cafe/GraphicPack/GraphicPack2Patches.h index b33cabf9..01926f2c 100644 --- a/src/Cafe/GraphicPack/GraphicPack2Patches.h +++ b/src/Cafe/GraphicPack/GraphicPack2Patches.h @@ -3,6 +3,7 @@ class PatchGroup; #include "GraphicPackError.h" +#include struct PatchContext_t { diff --git a/src/Cafe/HW/Latte/Renderer/Vulkan/VKRBase.h b/src/Cafe/HW/Latte/Renderer/Vulkan/VKRBase.h index a8a1376f..20eb1f2c 100644 --- a/src/Cafe/HW/Latte/Renderer/Vulkan/VKRBase.h +++ b/src/Cafe/HW/Latte/Renderer/Vulkan/VKRBase.h @@ -1,4 +1,5 @@ #pragma once + #include "util/math/vector2.h" class VKRMoveableRefCounterRef diff --git a/src/Cemu/nex/nexFriends.h b/src/Cemu/nex/nexFriends.h index cb935068..5b42e1c5 100644 --- a/src/Cemu/nex/nexFriends.h +++ b/src/Cemu/nex/nexFriends.h @@ -1,5 +1,7 @@ #pragma once +#include "Cemu/nex/nexTypes.h" + #ifndef FFL_SIZE #define FFL_SIZE 0x60 #endif diff --git a/src/audio/audioDebuggerWindow.h b/src/audio/audioDebuggerWindow.h index 5a6f1242..26be0880 100644 --- a/src/audio/audioDebuggerWindow.h +++ b/src/audio/audioDebuggerWindow.h @@ -1,5 +1,6 @@ #pragma once +#include #include class AudioDebuggerWindow : public wxFrame diff --git a/src/input/api/Wiimote/WiimoteMessages.h b/src/input/api/Wiimote/WiimoteMessages.h index 712c3a5c..0ed088d0 100644 --- a/src/input/api/Wiimote/WiimoteMessages.h +++ b/src/input/api/Wiimote/WiimoteMessages.h @@ -1,5 +1,7 @@ #pragma once +#include "input/motion/MotionSample.h" + // https://wiibrew.org/wiki/Wiimote enum InputReportId : uint8 diff --git a/src/input/motion/MotionSample.h b/src/input/motion/MotionSample.h index 7aa5bc13..510f8287 100644 --- a/src/input/motion/MotionSample.h +++ b/src/input/motion/MotionSample.h @@ -1,6 +1,7 @@ #pragma once -#include "util/math/vector3.h" + #include "util/math/quaternion.h" +#include "util/math/vector3.h" struct Quat {