Use a properly aligned buffer for reading files

This commit is contained in:
Maschell 2022-03-05 21:57:19 +01:00
parent 9bd3108fad
commit 187bfdac65
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ int32_t LoadFileToMem(const char *filepath, uint8_t **inbuffer, uint32_t *size)
uint32_t filesize = lseek(iFd, 0, SEEK_END);
lseek(iFd, 0, SEEK_SET);
auto *buffer = (uint8_t *) malloc(ROUNDUP(filesize, 0x40));
auto *buffer = (uint8_t *) memalign(0x40, ROUNDUP(filesize, 0x40));
if (buffer == nullptr) {
close(iFd);
return -2;