1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-12 15:06:41 +00:00

romfs: push clobber fix missed by git add

This commit is contained in:
Michael Scire 2023-01-24 14:03:54 -07:00
parent 9cd57b6c61
commit f1132fbf5a

View file

@ -16,7 +16,6 @@
#pragma once #pragma once
#include <stratosphere.hpp> #include <stratosphere.hpp>
#include "../dns_mitm/dnsmitm_debug.hpp"
namespace ams::mitm::fs::romfs { namespace ams::mitm::fs::romfs {
@ -117,12 +116,14 @@ namespace ams::mitm::fs::romfs {
std::unique_ptr<char[]> path; std::unique_ptr<char[]> path;
union { union {
BuildDirectoryContext *parent; BuildDirectoryContext *parent;
u32 parent_offset;
}; };
union { union {
BuildDirectoryContext *child; BuildDirectoryContext *child;
struct {
u32 parent_offset;
u32 child_offset; u32 child_offset;
}; };
};
union { union {
BuildDirectoryContext *sibling; BuildDirectoryContext *sibling;
u32 sibling_offset; u32 sibling_offset;