From 544272925dd21c8c36745227bc263ecec766418a Mon Sep 17 00:00:00 2001 From: ITotalJustice <47043333+ITotalJustice@users.noreply.github.com> Date: Thu, 15 May 2025 16:13:35 +0100 Subject: [PATCH] fix IsEmunand() failing due to the paths not being page aligned. --- sphaira/include/app.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sphaira/include/app.hpp b/sphaira/include/app.hpp index 29fe57d..6528963 100644 --- a/sphaira/include/app.hpp +++ b/sphaira/include/app.hpp @@ -8,6 +8,7 @@ #include "owo.hpp" #include "option.hpp" #include "fs.hpp" +#include "log.hpp" #include #include @@ -146,7 +147,7 @@ public: } static auto IsEmunand() -> bool { - struct EmummcPaths { + alignas(0x1000) struct EmummcPaths { char unk[0x80]; char nintendo[0x80]; } paths{};