[AMG] Disable until decompression can be implemented.

Original Pascal+Assembly source code is proving more difficult to port than originally expected.
This commit is contained in:
2025-09-06 17:16:10 +01:00
parent a7c6e1312b
commit 32fff0855d

View File

@@ -13,6 +13,8 @@ public sealed partial class Amg
/// <inheritdoc />
public bool Identify(IFilter filter)
{
return false;
/*
if(filter.DataForkLength < Marshal.SizeOf<ArcHeader>()) return false;
Stream stream = filter.GetDataForkStream();
@@ -26,6 +28,7 @@ public sealed partial class Amg
// Not a valid magic
return header.magic == ARC_MAGIC;
*/
}
/// <inheritdoc />