Fix build and move constants

This commit is contained in:
Matt Nadareski
2025-01-04 21:23:56 -05:00
parent 0cab005a78
commit 825004b422
9 changed files with 40 additions and 27 deletions

View File

@@ -361,7 +361,7 @@ namespace SabreTools.FileTypes.Archives
// Otherwise, use the stream directly
else
{
zipEntryRom = GetInfo(readStream,
zipEntryRom = FileTypeTool.GetInfo(readStream,
size: (long)localFile.UncompressedSize,
hashes: _hashTypes,
keepReadOpen: true);
@@ -418,7 +418,7 @@ namespace SabreTools.FileTypes.Archives
// Otherwise, use the stream directly
else
{
zipEntryRom = GetInfo(readStream,
zipEntryRom = FileTypeTool.GetInfo(readStream,
size: localFile.Length,
hashes: _hashTypes,
keepReadOpen: false);