mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2024-11-21 18:19:19 +01:00
Fix rom title
This commit is contained in:
parent
13925688ca
commit
8c813758f3
@ -35,6 +35,7 @@ rom_header_t file_read_rom_header(char *path) {
|
||||
fread(&(rom_header->checksum), sizeof(uint64_t), 1, fp);
|
||||
fseek(fp, 0x20, SEEK_SET);
|
||||
fread(&(rom_header->title), sizeof(rom_header->title), 1, fp);
|
||||
rom_header->title[20] = '\0';
|
||||
fseek(fp, 0x3b, SEEK_SET);
|
||||
fread(&(rom_header->metadata.media_type), sizeof(rom_header->metadata.media_type), 1, fp);
|
||||
//fseek(fp, 0x3c, SEEK_SET); // Consecutive read (no need to seek).
|
||||
|
@ -68,7 +68,7 @@ typedef struct {
|
||||
|
||||
typedef struct {
|
||||
uint64_t checksum;
|
||||
uint8_t title[14];
|
||||
uint8_t title[21];
|
||||
rom_metadata_t metadata;
|
||||
uint8_t version;
|
||||
} rom_header_t;
|
||||
|
Loading…
Reference in New Issue
Block a user