diff options
Diffstat (limited to 'backends/fs/wii')
-rw-r--r-- | backends/fs/wii/wii-fs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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__) |