mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
TGCBlob: Improve variable names
This commit is contained in:
@ -20,21 +20,21 @@ struct TGCHeader
|
||||
{
|
||||
u32 magic;
|
||||
u32 unknown_1;
|
||||
u32 header_size;
|
||||
u32 unknown_2;
|
||||
u32 tgc_header_size;
|
||||
u32 disc_header_area_size;
|
||||
|
||||
u32 fst_offset;
|
||||
u32 fst_real_offset;
|
||||
u32 fst_size;
|
||||
u32 fst_max_size;
|
||||
u32 dol_offset;
|
||||
u32 dol_real_offset;
|
||||
|
||||
u32 dol_size;
|
||||
u32 unknown_important_1;
|
||||
u32 file_area_real_offset;
|
||||
u32 unknown_2;
|
||||
u32 unknown_3;
|
||||
u32 unknown_4;
|
||||
|
||||
u32 unknown_5;
|
||||
u32 unknown_important_2;
|
||||
u32 unknown_4;
|
||||
u32 file_area_virtual_offset;
|
||||
};
|
||||
|
||||
class TGCFileReader final : public BlobReader
|
||||
@ -55,7 +55,7 @@ private:
|
||||
File::IOFile m_file;
|
||||
u64 m_size;
|
||||
|
||||
u64 m_file_offset;
|
||||
u64 m_file_area_shift;
|
||||
|
||||
// Stored as big endian in memory, regardless of the host endianness
|
||||
TGCHeader m_header = {};
|
||||
|
Reference in New Issue
Block a user