Skip to content

Commit

Permalink
(MCG): apply key to version 100 as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
morkt committed Mar 30, 2020
1 parent 303bac1 commit ad22d60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ArcFormats/FC01/ImageMCG.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ public override ImageMetaData ReadMetaData (IBinaryStream stream)
public override ImageData Read (IBinaryStream stream, ImageMetaData info)
{
var meta = (McgMetaData)info;
byte key = Properties.Settings.Default.MCGLastKey;
if (101 == meta.Version)
byte key = 0;
if (101 == meta.Version || 100 == meta.Version)
{
if (null == LastKey)
{
Expand Down

0 comments on commit ad22d60

Please sign in to comment.