Skip to content

Commit 0af67e5

Browse files
committed
Fix build
1 parent 6ab9f73 commit 0af67e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

BinaryObjectScanner/Factory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static class Factory
5353
case WrapperType.PAK: return new FileType.PAK();
5454
case WrapperType.PFF: return new FileType.PFF();
5555
case WrapperType.PKZIP: return new FileType.PKZIP();
56-
//case WrapperType.PLJ: return new FileType.PLJ();
56+
//case WrapperType.PlayJAudioFile: return new FileType.PLJ();
5757
//case WrapperType.Quantum: return new FileType.Quantum();
5858
case WrapperType.RAR: return new FileType.RAR();
5959
case WrapperType.SevenZip: return new FileType.SevenZip();

Test/Extractor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ private static void ExtractFile(string file, string outputDirectory)
497497

498498
#if ((NETFRAMEWORK && !NET20 && !NET35 && !NET40) || NETCOREAPP) && WIN
499499
// MoPaQ (MPQ) archive
500-
else if (ft == WrapperType.MPQ)
500+
else if (ft == WrapperType.MoPaQ)
501501
{
502502
// Build the archive information
503503
Console.WriteLine("Extracting MoPaQ contents");

0 commit comments

Comments
 (0)