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()