redolution / gekkoboot

A utilitarian bootloader for the GameCube
GNU General Public License v2.0
123 stars 22 forks source link

added more verbose diagnostic messaging #15

Closed yo1dog closed 2 years ago

yo1dog commented 2 years ago

Previous:

Couldn't mount sdb
Failed to open file /ipl.dol

Now:

Couldn't mount sdb: There is no valid FAT volume
Failed to open file /ipl.dol: Could not find the file

I simply copied the comment descriptions of the FRESULT values from ff.h and included them as an array of strings with a few tweaks. The common messages users should see are:

Presumably if there was something weird going on with the user's SD card they could see some of the other error messages which may be useful in diagnosing the issue.

9ary commented 2 years ago

Thanks!