mirror of https://github.com/PCSX2/pcsx2.git
[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:
parent
8c6e4cd28b
commit
46b70a72cb
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue