Merge pull request #10491 from QuarkTheAwesome/master

[WiiU] Warning fixes+devkitPPC updates
This commit is contained in:
Autechre 2020-04-22 21:16:33 +02:00 committed by GitHub
commit 0c42b643a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1162,19 +1162,14 @@ void _FAT_directory_entryStat (PARTITION* partition, DIR_ENTRY* entry, struct st
0,
u8array_to_u16 (entry->entryData, DIR_ENTRY_aDate)
);
st->st_spare1 = 0;
st->st_mtime = _FAT_filetime_to_time_t (
u8array_to_u16 (entry->entryData, DIR_ENTRY_mTime),
u8array_to_u16 (entry->entryData, DIR_ENTRY_mDate)
);
st->st_spare2 = 0;
st->st_ctime = _FAT_filetime_to_time_t (
u8array_to_u16 (entry->entryData, DIR_ENTRY_cTime),
u8array_to_u16 (entry->entryData, DIR_ENTRY_cDate)
);
st->st_spare3 = 0;
st->st_blksize = partition->bytesPerSector; /* Prefered file I/O block size */
st->st_blocks = (st->st_size + partition->bytesPerSector - 1) / partition->bytesPerSector; /* File size in blocks */
st->st_spare4[0] = 0;
st->st_spare4[1] = 0;
}