Skip to content

Commit

Permalink
WII: Another fix for Gamecube build. Corrected Disc Interface object.
Browse files Browse the repository at this point in the history
  • Loading branch information
digitall committed Mar 17, 2014
1 parent d1e59d0 commit b778cc1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion backends/fs/wii/wii-fs-factory.cpp
Expand Up @@ -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) {
Expand Down

0 comments on commit b778cc1

Please sign in to comment.