Skip to content

Commit

Permalink
Fix depricated ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
patlevin committed Jan 15, 2021
1 parent 2a6a22f commit 63198d6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions MapToPalette/PdnMapToPaletteEffectPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,9 @@ public enum DitheringMethods
/// Initialise the plugin
/// </summary>
public PdnMapToPaletteEffectPlugin()
: base(EffectName, Icon, EffectSubMenuName, EffectFlags.Configurable)
{ }
: base(EffectName, Icon, EffectSubMenuName, new EffectOptions { Flags = EffectFlags.Configurable })
{
}

/// <summary>
/// Return the plugin configuration dialog properties
Expand Down

0 comments on commit 63198d6

Please sign in to comment.