Tone down spacing
This commit is contained in:
@@ -5,7 +5,6 @@
|
|||||||
#include "helpers.hpp"
|
#include "helpers.hpp"
|
||||||
|
|
||||||
namespace IVFC {
|
namespace IVFC {
|
||||||
|
|
||||||
struct IVFCLevel {
|
struct IVFCLevel {
|
||||||
u64 logicalOffset;
|
u64 logicalOffset;
|
||||||
u64 size;
|
u64 size;
|
||||||
@@ -18,5 +17,4 @@ namespace IVFC {
|
|||||||
};
|
};
|
||||||
|
|
||||||
size_t parseIVFC(uintptr_t ivfcStart, IVFC& ivfc);
|
size_t parseIVFC(uintptr_t ivfcStart, IVFC& ivfc);
|
||||||
|
|
||||||
} // namespace IVFC
|
} // namespace IVFC
|
||||||
@@ -6,7 +6,6 @@
|
|||||||
#include "helpers.hpp"
|
#include "helpers.hpp"
|
||||||
|
|
||||||
namespace RomFS {
|
namespace RomFS {
|
||||||
|
|
||||||
struct RomFSNode {
|
struct RomFSNode {
|
||||||
std::u16string name;
|
std::u16string name;
|
||||||
// The file/directory offset relative to the start of the RomFS
|
// The file/directory offset relative to the start of the RomFS
|
||||||
@@ -20,5 +19,4 @@ namespace RomFS {
|
|||||||
};
|
};
|
||||||
|
|
||||||
std::unique_ptr<RomFSNode> parseRomFSTree(uintptr_t romFS, u64 romFSSize);
|
std::unique_ptr<RomFSNode> parseRomFSTree(uintptr_t romFS, u64 romFSSize);
|
||||||
|
|
||||||
} // namespace RomFS
|
} // namespace RomFS
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
#include "fs/ivfc.hpp"
|
#include "fs/ivfc.hpp"
|
||||||
|
|
||||||
namespace IVFC {
|
namespace IVFC {
|
||||||
|
|
||||||
size_t parseIVFC(uintptr_t ivfcStart, IVFC& ivfc) {
|
size_t parseIVFC(uintptr_t ivfcStart, IVFC& ivfc) {
|
||||||
uintptr_t ivfcPointer = ivfcStart;
|
uintptr_t ivfcPointer = ivfcStart;
|
||||||
|
|
||||||
@@ -74,5 +73,4 @@ namespace IVFC {
|
|||||||
|
|
||||||
return ivfcActualSize;
|
return ivfcActualSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace IVFC
|
} // namespace IVFC
|
||||||
@@ -8,7 +8,6 @@
|
|||||||
#include "helpers.hpp"
|
#include "helpers.hpp"
|
||||||
|
|
||||||
namespace RomFS {
|
namespace RomFS {
|
||||||
|
|
||||||
constexpr u32 metadataInvalidEntry = 0xFFFFFFFF;
|
constexpr u32 metadataInvalidEntry = 0xFFFFFFFF;
|
||||||
|
|
||||||
struct Level3Header {
|
struct Level3Header {
|
||||||
@@ -192,5 +191,4 @@ namespace RomFS {
|
|||||||
|
|
||||||
return root;
|
return root;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace RomFS
|
} // namespace RomFS
|
||||||
Reference in New Issue
Block a user