mirror of
https://github.com/wiiu-env/libfat.git
synced 2024-11-22 01:49:17 +01:00
Support SD2SP2. (#15)
This commit is contained in:
parent
2f6465447f
commit
8e73fa12f3
@ -71,14 +71,20 @@ const INTERFACE_ID _FAT_disc_interfaces[] = {
|
||||
#elif defined (__gamecube__)
|
||||
#include <sdcard/gcsd.h>
|
||||
|
||||
static const DISC_INTERFACE* get_io_gcsda (void) {
|
||||
return &__io_gcsda;
|
||||
static const DISC_INTERFACE* get_io_gcsd2 (void) {
|
||||
return &__io_gcsd2;
|
||||
}
|
||||
|
||||
static const DISC_INTERFACE* get_io_gcsdb (void) {
|
||||
return &__io_gcsdb;
|
||||
}
|
||||
|
||||
static const DISC_INTERFACE* get_io_gcsda (void) {
|
||||
return &__io_gcsda;
|
||||
}
|
||||
|
||||
const INTERFACE_ID _FAT_disc_interfaces[] = {
|
||||
{"sd", get_io_gcsd2},
|
||||
{"carda", get_io_gcsda},
|
||||
{"cardb", get_io_gcsdb},
|
||||
{NULL, NULL}
|
||||
|
Loading…
Reference in New Issue
Block a user