romfs: push clobber fix missed by git add
This commit is contained in:
@@ -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,11 +116,13 @@ 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;
|
||||||
u32 child_offset;
|
struct {
|
||||||
|
u32 parent_offset;
|
||||||
|
u32 child_offset;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
union {
|
union {
|
||||||
BuildDirectoryContext *sibling;
|
BuildDirectoryContext *sibling;
|
||||||
|
|||||||
Reference in New Issue
Block a user