1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-19 13:33:24 +01: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
#include <stratosphere.hpp>
#include "../dns_mitm/dnsmitm_debug.hpp"
namespace ams::mitm::fs::romfs {
@ -117,11 +116,13 @@ namespace ams::mitm::fs::romfs {
std::unique_ptr<char[]> path;
union {
BuildDirectoryContext *parent;
u32 parent_offset;
};
union {
BuildDirectoryContext *child;
u32 child_offset;
struct {
u32 parent_offset;
u32 child_offset;
};
};
union {
BuildDirectoryContext *sibling;