• Hey, guest user. Hope you're enjoying GameParadise! Have you considered registering for an account? Come join us and add your take to the daily discourse.

Hacking exfathax.h - no error fix

 
 

admin

Chad
Staff member
85%
Joined
Jan 25, 2024
Messages
3,562
Points
38
Age
38
Location
USA
Website
gameparadise.org
Credits
63,838
After what seems like about a million attempts, I have finally fixed the file system error message for those running chips that can send a usb image....

Replace the included exfathax.h included in the attachment for what you have in your arduino sketches and change your onread function to this:

Code:
static int32_t onRead(uint32_t lba, uint32_t offset, void * buffer, uint32_t bufsize) {
  if (lba > 130) {
    lba = 130;
  }
  memcpy(buffer, exfathax[lba] + offset, bufsize);
  return bufsize;
}
That will fix the file system errors when sending the exfat usb image as this mod has a small 512byte fat image added to it, which the ps4 will not error out with. This should give a faster and more stable hack.

Enjoy!
 

Attachments

  • Image fix.rar
    Image fix.rar
    785 bytes · Views: 17
 

Recent Content

Newest Downloads

Tutorials

Back
Top