diff options
Diffstat (limited to 'backends')
-rw-r--r-- | backends/fs/wii/wii-fs-factory.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/backends/fs/wii/wii-fs-factory.cpp b/backends/fs/wii/wii-fs-factory.cpp index 3bebc2bed3..1c67ae4823 100644 --- a/backends/fs/wii/wii-fs-factory.cpp +++ b/backends/fs/wii/wii-fs-factory.cpp @@ -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) { |