Minor cleanup

This commit is contained in:
Deterous
2023-11-01 20:46:01 +13:00
parent fd18b425d1
commit be713935b6
3 changed files with 129 additions and 130 deletions
+1 -1
View File
@@ -170,7 +170,7 @@ namespace LibIRD
byte[] crc32;
using (FileStream fs = File.OpenRead(isoPath))
{
Crc32 hasher = new Crc32();
Crc32 hasher = new();
hasher.Append(fs);
crc32 = hasher.GetCurrentHash();
Array.Reverse(crc32);