From db445bfc87600d0f87bdeeb8b3bf40a3a935f097 Mon Sep 17 00:00:00 2001 From: Cameron Cawley Date: Mon, 1 Jul 2019 17:59:27 +0100 Subject: BACKENDS: Improve AbstractFSNode::createDirectory() stubs --- backends/fs/wii/wii-fs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'backends/fs/wii') diff --git a/backends/fs/wii/wii-fs.cpp b/backends/fs/wii/wii-fs.cpp index 3b276e9838..c54cdeffd8 100644 --- a/backends/fs/wii/wii-fs.cpp +++ b/backends/fs/wii/wii-fs.cpp @@ -214,8 +214,8 @@ Common::WriteStream *WiiFilesystemNode::createWriteStream() { } bool WiiFilesystemNode::createDirectory() { - error("Not supported"); - return false; + warning("WiiFilesystemNode::createDirectory(): Not supported"); + return _exists && _isDirectory; } #endif //#if defined(__WII__) -- cgit v1.2.3