diff options
Diffstat (limited to 'backends/platform/ds/arm9/source/ramsave.cpp')
-rw-r--r-- | backends/platform/ds/arm9/source/ramsave.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/backends/platform/ds/arm9/source/ramsave.cpp b/backends/platform/ds/arm9/source/ramsave.cpp index 8bcc34f9af..a9ac773dd2 100644 --- a/backends/platform/ds/arm9/source/ramsave.cpp +++ b/backends/platform/ds/arm9/source/ramsave.cpp @@ -383,16 +383,24 @@ void DSSaveFileManager::deleteFile(char* name) { flushToSaveRAM(); } -void DSSaveFileManager::removeSavefile(const char *filename) { - TODO: Implement this. Most likely, you just have to use the code of deleteFile? +bool DSSaveFileManager::removeSavefile(const char *filename) { + consolePrintf("DSSaveFileManager::removeSavefile : Not implemented yet.\n"); + assert(false); + //TODO: Implement this. Most likely, you just have to use the code of deleteFile? + return false; } Common::StringList DSSaveFileManager::listSavefiles(const char *pattern) { + consolePrintf("DSSaveFileManager::listSavefiles : Not implemented yet.\n"); + assert(false); + return Common::StringList(); + /* TODO: Implement this. If you don't understand what it should do, just ask (e.g. on scummvm-devel or Fingolfin). It should be pretty simple if you use Common::matchString from common/util.h and read the Doxygen docs, then combine this with the old code below... + */ /* void DSSaveFileManager::listSavefiles(const char *prefix, bool *marks, int num) { |