Fix byte addressable media interface inheritance.

This commit is contained in:
2021-11-15 03:39:51 +00:00
parent 533131a8fb
commit 99403fffae

View File

@@ -42,7 +42,7 @@ using Aaru.CommonTypes.Enums;
namespace Aaru.CommonTypes.Interfaces;
/// <summary>Interface defining linear media (chips, game carts, etc) images</summary>
public interface IByteAddressableImage : IBaseImage
public interface IByteAddressableImage : IBaseWritableImage
{
/// <summary>Gets or sets the current position</summary>
long Position { get; set; }