diff --git a/TextureDecoder/TextureFile.cs b/TextureDecoder/TextureFile.cs index 00be828..3de972d 100644 --- a/TextureDecoder/TextureFile.cs +++ b/TextureDecoder/TextureFile.cs @@ -299,7 +299,7 @@ public class TextureFile var image = Image.LoadPixelData(reinterpretedPixels, mipWidth, mipHeight); - image.SaveAsPng(Path.Combine(outputDir, Path.GetFileName(FileName)) + $"_{mipWidth}x{mipHeight}.png"); + image.SaveAsPng(Path.Combine(outputDir, Path.GetFileName(FileName)) + $"_{Header.Format}_{mipWidth}x{mipHeight}.png"); } }