aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/wii/osystem.cpp
diff options
context:
space:
mode:
authorAndre Heider2009-01-19 23:57:49 +0000
committerAndre Heider2009-01-19 23:57:49 +0000
commit57d118e9308137c62a6023323d5df9be6a429469 (patch)
tree42ec7f90b0c57cb938479721fd843c56e32dafca /backends/platform/wii/osystem.cpp
parent017b39eae0891c485671f52d53b5a60ac1dff195 (diff)
downloadscummvm-rg350-57d118e9308137c62a6023323d5df9be6a429469.tar.gz
scummvm-rg350-57d118e9308137c62a6023323d5df9be6a429469.tar.bz2
scummvm-rg350-57d118e9308137c62a6023323d5df9be6a429469.zip
Added ISO9660/Joliet DVD support
svn-id: r35930
Diffstat (limited to 'backends/platform/wii/osystem.cpp')
-rw-r--r--backends/platform/wii/osystem.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/backends/platform/wii/osystem.cpp b/backends/platform/wii/osystem.cpp
index 885a460bac..12fe5341cd 100644
--- a/backends/platform/wii/osystem.cpp
+++ b/backends/platform/wii/osystem.cpp
@@ -115,6 +115,9 @@ void OSystem_Wii::quit() {
deinitEvents();
deinitSfx();
deinitGfx();
+
+ // umount all async filesystems
+ WiiFilesystemFactory::asyncHandler(false, NULL);
}
bool OSystem_Wii::hasFeature(Feature f) {
@@ -212,3 +215,8 @@ void OSystem_Wii::getTimeAndDate(struct tm &t) const {
t = *localtime(&curTime);
}
+void OSystem_Wii::engineInit() {
+ // umount not required filesystems for this game
+ WiiFilesystemFactory::asyncHandler(false, &ConfMan.get("path"));
+}
+