From dde90a852d22a6137d3a469cd714d0cc91244b18 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 21 Sep 2023 22:08:22 -0400 Subject: [PATCH] Fix BitStream returns --- BitStream.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BitStream.cs b/BitStream.cs index 5243acc..7888cf7 100644 --- a/BitStream.cs +++ b/BitStream.cs @@ -91,7 +91,7 @@ namespace SabreTools.Compression /// Read a full UInt16, if possible /// /// The next UInt16, null on error or end of stream - public byte? ReadUInt16() + public ushort? ReadUInt16() { throw new NotImplementedException(); } @@ -100,7 +100,7 @@ namespace SabreTools.Compression /// Read a full UInt32, if possible /// /// The next UInt32, null on error or end of stream - public byte? ReadUInt32() + public uint? ReadUInt32() { throw new NotImplementedException(); } @@ -109,7 +109,7 @@ namespace SabreTools.Compression /// Read a full UInt64, if possible /// /// The next UInt64, null on error or end of stream - public byte? ReadUInt64() + public ulong? ReadUInt64() { throw new NotImplementedException(); }