Tone down spacing

This commit is contained in:
wheremyfoodat 2023-07-30 01:01:39 +03:00
parent e6098ba7ae
commit 2e12eea806
4 changed files with 0 additions and 8 deletions

View file

@ -5,7 +5,6 @@
#include "helpers.hpp"
namespace IVFC {
struct IVFCLevel {
u64 logicalOffset;
u64 size;
@ -18,5 +17,4 @@ namespace IVFC {
};
size_t parseIVFC(uintptr_t ivfcStart, IVFC& ivfc);
} // namespace IVFC

View file

@ -6,7 +6,6 @@
#include "helpers.hpp"
namespace RomFS {
struct RomFSNode {
std::u16string name;
// 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);
} // namespace RomFS

View file

@ -1,7 +1,6 @@
#include "fs/ivfc.hpp"
namespace IVFC {
size_t parseIVFC(uintptr_t ivfcStart, IVFC& ivfc) {
uintptr_t ivfcPointer = ivfcStart;
@ -74,5 +73,4 @@ namespace IVFC {
return ivfcActualSize;
}
} // namespace IVFC

View file

@ -8,7 +8,6 @@
#include "helpers.hpp"
namespace RomFS {
constexpr u32 metadataInvalidEntry = 0xFFFFFFFF;
struct Level3Header {
@ -192,5 +191,4 @@ namespace RomFS {
return root;
}
} // namespace RomFS