[skip ci] gsdumpgui: Allow to open ini file even when no gsdx dll is selected.

ini file is already shared between dlls (previous commit) so there's no
need for verification anymore.
This commit is contained in:
lightningterror 2019-02-09 01:05:47 +01:00
parent 8c6e4cd28b
commit 46b70a72cb
1 changed files with 2 additions and 7 deletions

View File

@ -295,14 +295,9 @@ namespace GSDumpGUI
private void cmdOpenIni_Click(object sender, EventArgs e)
{
// Execute the GSconfigure function
if (lstGSDX.SelectedIndex != -1)
{
CreateDirs();
Process.Start(AppDomain.CurrentDomain.BaseDirectory + "GSDumpGSDXConfigs\\inis\\gsdx.ini");
}
else
MessageBox.Show("Select your GSdx first", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
private void lstDumps_SelectedIndexChanged(object sender, EventArgs e)
{