diff --git a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_romfs.hpp b/stratosphere/ams_mitm/source/fs_mitm/fsmitm_romfs.hpp index c32c538c7..98e74c430 100644 --- a/stratosphere/ams_mitm/source/fs_mitm/fsmitm_romfs.hpp +++ b/stratosphere/ams_mitm/source/fs_mitm/fsmitm_romfs.hpp @@ -16,7 +16,6 @@ #pragma once #include -#include "../dns_mitm/dnsmitm_debug.hpp" namespace ams::mitm::fs::romfs { @@ -117,11 +116,13 @@ namespace ams::mitm::fs::romfs { std::unique_ptr path; union { BuildDirectoryContext *parent; - u32 parent_offset; }; union { BuildDirectoryContext *child; - u32 child_offset; + struct { + u32 parent_offset; + u32 child_offset; + }; }; union { BuildDirectoryContext *sibling;