WII: Another fix for Gamecube build. Corrected Disc Interface object.

This commit is contained in:
D G Turner 2014-01-25 21:32:07 +00:00
parent 417f755b90
commit 08d3b5754a

View File

@ -126,7 +126,11 @@ bool WiiFilesystemFactory::failedToMount(FileSystemType type) {
}
#ifdef USE_WII_DI
const DISC_INTERFACE* dvd = &__io_wiidvd;
#ifndef GAMECUBE
const DISC_INTERFACE* dvd = &__io_wiidvd;
#else
const DISC_INTERFACE* dvd = &__io_gcdvd;
#endif
#endif
void WiiFilesystemFactory::mount(FileSystemType type) {