Skip to content

Commit

Permalink
[skip ci] gsdumpgui: Allow to open ini file even when no gsdx dll is …
Browse files Browse the repository at this point in the history
…selected.

ini file is already shared between dlls (previous commit) so there's no
need for verification anymore.
  • Loading branch information
lightningterror committed Feb 9, 2019
1 parent 8c6e4cd commit 46b70a7
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions tools/GSDumpGUI/Forms/frmMain.cs
Expand Up @@ -295,13 +295,8 @@ private void cmdConfigGSDX_Click(object sender, EventArgs e)
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);
CreateDirs();
Process.Start(AppDomain.CurrentDomain.BaseDirectory + "GSDumpGSDXConfigs\\inis\\gsdx.ini");
}

private void lstDumps_SelectedIndexChanged(object sender, EventArgs e)
Expand Down

0 comments on commit 46b70a7

Please sign in to comment.