Fix Gambatte and SameBoy palette load file pickers using wrong dir
fixes 348cbd18d
This commit is contained in:
parent
b84ce89575
commit
2b371e2752
|
@ -303,7 +303,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
var result = this.ShowFileOpenDialog(
|
||||
discardCWDChange: true,
|
||||
filter: FilesystemFilterSet.Palettes,
|
||||
initDir: _config.PathEntries.ScreenshotAbsolutePathFor(VSystemID.Raw.GB));
|
||||
initDir: _config.PathEntries.PalettesAbsolutePathFor(VSystemID.Raw.GB));
|
||||
if (result is not null) LoadColorFile(result, alert: true);
|
||||
}
|
||||
|
||||
|
|
|
@ -265,7 +265,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
var result = this.ShowFileOpenDialog(
|
||||
discardCWDChange: true,
|
||||
filter: FilesystemFilterSet.Palettes,
|
||||
initDir: _config.PathEntries.ScreenshotAbsolutePathFor(VSystemID.Raw.GB));
|
||||
initDir: _config.PathEntries.PalettesAbsolutePathFor(VSystemID.Raw.GB));
|
||||
if (result is not null) LoadColorFile(result, alert: true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue