From b49b650bf7519aec0878c0f861f97635b3d8835a Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 2 Aug 2019 01:42:37 +0100 Subject: [PATCH] Allow to mount Opera filesystem. --- DiscImageChef.Filesystems/Opera/Super.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DiscImageChef.Filesystems/Opera/Super.cs b/DiscImageChef.Filesystems/Opera/Super.cs index 9fcdf40e7..6a334e779 100644 --- a/DiscImageChef.Filesystems/Opera/Super.cs +++ b/DiscImageChef.Filesystems/Opera/Super.cs @@ -1,4 +1,3 @@ -using System; using System.Collections.Generic; using System.Text; using DiscImageChef.CommonTypes; @@ -54,9 +53,10 @@ namespace DiscImageChef.Filesystems image = imagePlugin; int firstRootBlock = BigEndianBitConverter.ToInt32(sbSector, Marshal.SizeOf()); rootDirectoryCache = DecodeDirectory(firstRootBlock); + directoryCache = new Dictionary>(); mounted = true; - throw new NotImplementedException(); + return Errno.NoError; } public Errno Unmount()