mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-09 13:41:43 +00:00
romfs: push clobber fix missed by git add
This commit is contained in:
parent
9cd57b6c61
commit
f1132fbf5a
1 changed files with 4 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue