1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-18 21:13:23 +01:00

emummc: style-change

This commit is contained in:
Michael Scire 2021-05-05 09:34:29 -07:00
parent cfd7121574
commit 6bb4253df5

View file

@ -314,7 +314,7 @@ static uint64_t emummc_read_write_inner(void *buf, unsigned int sector, unsigned
return 0;
}
buf = (void *)((uintptr_t)buf + (cur_sectors << 9));
buf = (char *)buf + (cur_sectors << 9);
remaining -= cur_sectors;
sector = 0;
++fp;