Removed memcard drivers for Wii

This commit is contained in:
Michael Chisholm 2008-12-10 08:22:35 +00:00
parent 9a61155c18
commit d7e584d6e5

View File

@ -40,16 +40,9 @@ The list is terminated by a NULL/NULL entry.
/* ====================== Wii ====================== */ /* ====================== Wii ====================== */
#if defined (__wii__) #if defined (__wii__)
#include <sdcard/gcsd.h>
#include <sdcard/wiisd_io.h> #include <sdcard/wiisd_io.h>
#include <ogc/usbstorage.h> #include <ogc/usbstorage.h>
static const DISC_INTERFACE* get_io_gcsda (void) {
return &__io_gcsda;
}
static const DISC_INTERFACE* get_io_gcsdb (void) {
return &__io_gcsdb;
}
static const DISC_INTERFACE* get_io_wiisd (void) { static const DISC_INTERFACE* get_io_wiisd (void) {
return &__io_wiisd; return &__io_wiisd;
} }
@ -59,8 +52,6 @@ static const DISC_INTERFACE* get_io_usbstorage (void) {
const INTERFACE_ID _FAT_disc_interfaces[] = { const INTERFACE_ID _FAT_disc_interfaces[] = {
{"sd", get_io_wiisd}, {"sd", get_io_wiisd},
{"usb", get_io_usbstorage}, {"usb", get_io_usbstorage},
{"carda", get_io_gcsda},
{"cardb", get_io_gcsdb},
{NULL, NULL} {NULL, NULL}
}; };