mirror of
https://github.com/wiiu-env/libfat.git
synced 2024-11-22 09:59:18 +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__)
|
#elif defined (__gamecube__)
|
||||||
#include <sdcard/gcsd.h>
|
#include <sdcard/gcsd.h>
|
||||||
|
|
||||||
static const DISC_INTERFACE* get_io_gcsda (void) {
|
static const DISC_INTERFACE* get_io_gcsd2 (void) {
|
||||||
return &__io_gcsda;
|
return &__io_gcsd2;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const DISC_INTERFACE* get_io_gcsdb (void) {
|
static const DISC_INTERFACE* get_io_gcsdb (void) {
|
||||||
return &__io_gcsdb;
|
return &__io_gcsdb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const DISC_INTERFACE* get_io_gcsda (void) {
|
||||||
|
return &__io_gcsda;
|
||||||
|
}
|
||||||
|
|
||||||
const INTERFACE_ID _FAT_disc_interfaces[] = {
|
const INTERFACE_ID _FAT_disc_interfaces[] = {
|
||||||
|
{"sd", get_io_gcsd2},
|
||||||
{"carda", get_io_gcsda},
|
{"carda", get_io_gcsda},
|
||||||
{"cardb", get_io_gcsdb},
|
{"cardb", get_io_gcsdb},
|
||||||
{NULL, NULL}
|
{NULL, NULL}
|
||||||
|
Loading…
Reference in New Issue
Block a user