Skip to content

Commit

Permalink
Merge pull request #607 from warrengalyen/fix-jasc-palette-parser
Browse files Browse the repository at this point in the history
Fix Jasc PSP palette parser
  • Loading branch information
flabbet committed Mar 25, 2024
2 parents fcae725 + 29e1ed6 commit 7a10c4e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.IO;
using PixiEditor.DrawingApi.Core.ColorsImpl;
using PixiEditor.Extensions.Palettes;
using PixiEditor.Extensions.Palettes.Parsers;

Expand All @@ -10,7 +9,7 @@ namespace PixiEditor.Models.IO.PaletteParsers.JascPalFile;
/// </summary>
internal class JascFileParser : PaletteFileParser
{
private static readonly string[] _supportedFileExtensions = new string[] { ".pal" };
private static readonly string[] _supportedFileExtensions = new string[] { ".pal", ".psppalette" };
public override string[] SupportedFileExtensions => _supportedFileExtensions;
public override string FileName => "Jasc Palette";

Expand Down

0 comments on commit 7a10c4e

Please sign in to comment.