Fix missing size for ISO data

This commit is contained in:
Matt Nadareski
2023-04-23 22:26:24 -04:00
parent f28cf614c3
commit af12c18d2e
2 changed files with 2 additions and 0 deletions

View File

@@ -35,6 +35,7 @@
- Add suppl support to Xbox
- Support single digit subs
- Fix info tool hash finding
- Fix missing size for ISO data
### 2.5 (2023-03-12)

View File

@@ -1311,6 +1311,7 @@ namespace MPF.Modules
var rom = datafile.Games[0].Roms[0];
Int64.TryParse(rom.Size, out size);
crc32 = rom.Crc;
md5 = rom.Md5;
sha1 = rom.Sha1;