Skip to content
Snippets Groups Projects
Commit e2971081 authored by shinyquagsire23's avatar shinyquagsire23
Browse files

file_sys: Style tweaks

Asdf
parent 487f8bc0
No related branches found
No related tags found
No related merge requests found
...@@ -8,9 +8,6 @@ ...@@ -8,9 +8,6 @@
#include "core/file_sys/program_metadata.h" #include "core/file_sys/program_metadata.h"
#include "core/loader/loader.h" #include "core/loader/loader.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
// FileSys namespace
namespace FileSys { namespace FileSys {
Loader::ResultStatus ProgramMetadata::Load(const std::string& file_path) { Loader::ResultStatus ProgramMetadata::Load(const std::string& file_path) {
......
...@@ -15,9 +15,6 @@ namespace Loader { ...@@ -15,9 +15,6 @@ namespace Loader {
enum class ResultStatus; enum class ResultStatus;
} }
////////////////////////////////////////////////////////////////////////////////////////////////////
// FileSys namespace
namespace FileSys { namespace FileSys {
enum class ProgramAddressSpaceType : u8 { enum class ProgramAddressSpaceType : u8 {
...@@ -100,7 +97,7 @@ private: ...@@ -100,7 +97,7 @@ private:
u32_le sac_size; u32_le sac_size;
u32_le kac_offset; u32_le kac_offset;
u32_le kac_size; u32_le kac_size;
std::array<u8, 0x8> padding; INSERT_PADDING_BYTES(0x8);
}; };
static_assert(sizeof(AcidHeader) == 0x240, "ACID header structure size is wrong"); static_assert(sizeof(AcidHeader) == 0x240, "ACID header structure size is wrong");
...@@ -109,14 +106,14 @@ private: ...@@ -109,14 +106,14 @@ private:
std::array<char, 4> magic; std::array<char, 4> magic;
std::array<u8, 0xC> reserved; std::array<u8, 0xC> reserved;
u64_le title_id; u64_le title_id;
std::array<u8, 0x8> padding; INSERT_PADDING_BYTES(0x8);
u32_le fah_offset; u32_le fah_offset;
u32_le fah_size; u32_le fah_size;
u32_le sac_offset; u32_le sac_offset;
u32_le sac_size; u32_le sac_size;
u32_le kac_offset; u32_le kac_offset;
u32_le kac_size; u32_le kac_size;
std::array<u8, 0x8> padding_2; INSERT_PADDING_BYTES(0x8);
}; };
static_assert(sizeof(AciHeader) == 0x40, "ACI0 header structure size is wrong"); static_assert(sizeof(AciHeader) == 0x40, "ACI0 header structure size is wrong");
...@@ -125,7 +122,7 @@ private: ...@@ -125,7 +122,7 @@ private:
struct FileAccessControl { struct FileAccessControl {
u8 version; u8 version;
std::array<u8, 3> padding; INSERT_PADDING_BYTES(3);
u64_le permissions; u64_le permissions;
std::array<u8, 0x20> unknown; std::array<u8, 0x20> unknown;
}; };
...@@ -134,7 +131,7 @@ private: ...@@ -134,7 +131,7 @@ private:
struct FileAccessHeader { struct FileAccessHeader {
u8 version; u8 version;
std::array<u8, 3> padding; INSERT_PADDING_BYTES(3);
u64_le permissions; u64_le permissions;
u32_le unk_offset; u32_le unk_offset;
u32_le unk_size; u32_le unk_size;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment