mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-09 04:24:36 -05:00
fix designer deletion of sav editor control
custom constructor parameters aren't expected, needs a default without optional (no usages were using a sav provided anyway)
This commit is contained in:
parent
7705c158a9
commit
c6089a183c
|
|
@ -43,9 +43,9 @@ public void ReloadSlots()
|
|||
ResetNonBoxSlots();
|
||||
}
|
||||
|
||||
public SAVEditor(SaveFile sav = null)
|
||||
public SAVEditor()
|
||||
{
|
||||
var z = Task.Run(() => sav ?? SaveUtil.GetBlankSAV(GameVersion.US, "PKHeX"));
|
||||
var z = Task.Run(() => SaveUtil.GetBlankSAV(GameVersion.US, "PKHeX"));
|
||||
InitializeComponent();
|
||||
var SupplementarySlots = new[]
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user