From 2fb02110c1ebc4e8d1f3797540cf805c4914c874 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Thu, 2 May 2024 15:32:32 -0700 Subject: [PATCH] fix comment --- src/BizHawk.Emulation.DiscSystem/DiscFormats/CHD_format.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CHD_format.cs b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CHD_format.cs index a8085deda6..85d40e580b 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CHD_format.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CHD_format.cs @@ -1054,10 +1054,9 @@ namespace BizHawk.Emulation.DiscSystem bw.Write(chunkDataSize); bw.Write(i == cdMetadatas.Count - 1 - ? 0L + ? 0L // last chunk : BinaryPrimitives.ReverseEndianness(bw.BaseStream.Position + 8 + metadataBytes.Length)); // offset to next chunk - // last chunk bw.Write(metadataBytes); metadataHashes[i] = SHA1Checksum.Compute(metadataBytes);