From c98e800aeeb0222c1794c17e1761b15231ef3a26 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Mon, 22 Nov 2021 03:54:50 +0000 Subject: [PATCH] Fix typos in Game Boy image implementation. --- Aaru.Images/ByteAddressable/GameBoy.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Aaru.Images/ByteAddressable/GameBoy.cs b/Aaru.Images/ByteAddressable/GameBoy.cs index 674395328..aac669ef9 100644 --- a/Aaru.Images/ByteAddressable/GameBoy.cs +++ b/Aaru.Images/ByteAddressable/GameBoy.cs @@ -16,12 +16,10 @@ namespace Aaru.DiscImages.ByteAddressable; public class GameBoy : IByteAddressableImage { - byte[] _data; - + byte[] _data; Stream _dataStream; ImageInfo _imageInfo; - - bool _opened; + bool _opened; /// public string Author => "Natalia Portillo"; /// @@ -146,7 +144,7 @@ public class GameBoy : IByteAddressableImage /// public IEnumerable SupportedMediaTypes => new[] { - MediaType.N64GamePak + MediaType.GameBoyGamePak }; /// public IEnumerable<(string name, Type type, string description, object @default)> SupportedOptions =>