aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/wii/osystem.cpp
diff options
context:
space:
mode:
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"));
+}
+