code: Remove outdated comment style (#6640)

This commit is contained in:
GPUCode
2023-06-25 15:22:41 +05:30
committed by GitHub
parent 9b82de6b24
commit 7edc86a9bc
52 changed files with 0 additions and 176 deletions
-12
View File
@@ -40,9 +40,6 @@ struct NCSD_Header {
static_assert(sizeof(NCSD_Header) == 0x200, "NCCH header structure size is wrong");
////////////////////////////////////////////////////////////////////////////////////////////////////
/// NCCH header (Note: "NCCH" appears to be a publicly unknown acronym)
struct NCCH_Header {
u8 signature[0x100];
u32_le magic;
@@ -98,9 +95,6 @@ struct NCCH_Header {
static_assert(sizeof(NCCH_Header) == 0x200, "NCCH header structure size is wrong");
////////////////////////////////////////////////////////////////////////////////////////////////////
// ExeFS (executable file system) headers
struct ExeFs_SectionHeader {
char name[8];
u32 offset;
@@ -113,9 +107,6 @@ struct ExeFs_Header {
u8 hashes[8][0x20];
};
////////////////////////////////////////////////////////////////////////////////////////////////////
// ExHeader (executable file system header) headers
struct ExHeader_SystemInfoFlags {
u8 reserved[5];
u8 flag;
@@ -223,9 +214,6 @@ struct ExHeader_Header {
static_assert(sizeof(ExHeader_Header) == 0x800, "ExHeader structure size is wrong");
////////////////////////////////////////////////////////////////////////////////////////////////////
// FileSys namespace
namespace FileSys {
/**