From f1132fbf5a8169e3f73e31f4eca96168105cd68d Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 24 Jan 2023 14:03:54 -0700 Subject: [PATCH] romfs: push clobber fix missed by git add --- stratosphere/ams_mitm/source/fs_mitm/fsmitm_romfs.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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;