diff --git a/BrawlLib/Internal/Windows/Forms/TextureConverterDialog.cs b/BrawlLib/Internal/Windows/Forms/TextureConverterDialog.cs index f152f216f..580d1e44b 100644 --- a/BrawlLib/Internal/Windows/Forms/TextureConverterDialog.cs +++ b/BrawlLib/Internal/Windows/Forms/TextureConverterDialog.cs @@ -473,7 +473,7 @@ private static bool TryLoadPngWithPalette(Stream sourceStream, out BitmapSource private bool LoadImagesPreservingPaletteInfo(string path) { #if !MONO - Stream sourceStream = new FileStream(_imageSource, FileMode.Open, FileAccess.Read, FileShare.Read); + Stream sourceStream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read); try { if (TryLoadPngWithPalette(sourceStream, out BitmapSource preservedImage) && preservedImage.Format == System.Windows.Media.PixelFormats.Indexed8)