diff options
Diffstat (limited to 'backends/platform/ds/arm9/source/osystem_ds.cpp')
-rw-r--r-- | backends/platform/ds/arm9/source/osystem_ds.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/platform/ds/arm9/source/osystem_ds.cpp b/backends/platform/ds/arm9/source/osystem_ds.cpp index 2381abab5e..1d8d39dcab 100644 --- a/backends/platform/ds/arm9/source/osystem_ds.cpp +++ b/backends/platform/ds/arm9/source/osystem_ds.cpp @@ -37,6 +37,7 @@ #include "cdaudio.h" #include "graphics/surface.h" #include "touchkeyboard.h" +#include "ds-fs-factory.h" OSystem_DS* OSystem_DS::_instance = NULL; @@ -416,6 +417,10 @@ void OSystem_DS::getTimeAndDate(struct tm &t) const { t = *localtime(&curTime); } +FilesystemFactory *OSystem_DS::getFilesystemFactory() { + return &DSFilesystemFactory::instance(); +} + OSystem::MutexRef OSystem_DS::createMutex(void) { return NULL; } |