diff --git a/ArcFormats/ArcFormats.csproj b/ArcFormats/ArcFormats.csproj index f3c36672..128997fc 100644 --- a/ArcFormats/ArcFormats.csproj +++ b/ArcFormats/ArcFormats.csproj @@ -126,6 +126,7 @@ + @@ -137,6 +138,7 @@ + diff --git a/Legacy/CocktailSoft/ImageWMK.cs b/ArcFormats/FC01/ImageWMK.cs similarity index 98% rename from Legacy/CocktailSoft/ImageWMK.cs rename to ArcFormats/FC01/ImageWMK.cs index caec5e61..5cddfd57 100644 --- a/Legacy/CocktailSoft/ImageWMK.cs +++ b/ArcFormats/FC01/ImageWMK.cs @@ -51,7 +51,7 @@ namespace GameRes.Formats.Cocktail public override ImageData Read (IBinaryStream file, ImageMetaData info) { - file.Position = 0x10; + file.Position = 8; var pixels = file.ReadBytes ((int)info.Width * (int)info.Height); return ImageData.Create (info, PixelFormats.Gray8, null, pixels); }