[Scummvm-cvs-logs] scummvm master -> 08d3b5754af625f0385aa28b225e82704659eab9

digitall dgturner at iee.org
Sat Jan 25 22:29:05 CET 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

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


Commit: 08d3b5754af625f0385aa28b225e82704659eab9
    https://github.com/scummvm/scummvm/commit/08d3b5754af625f0385aa28b225e82704659eab9
Author: D G Turner (digitall at scummvm.org)
Date: 2014-01-25T13:32:07-08:00

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

Changed paths:
    backends/fs/wii/wii-fs-factory.cpp



diff --git a/backends/fs/wii/wii-fs-factory.cpp b/backends/fs/wii/wii-fs-factory.cpp
index 3bebc2b..1c67ae4 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) {






More information about the Scummvm-git-logs mailing list