From 46b70a72cb96a8c70fa8fe6a5e512c2c2b0dbc44 Mon Sep 17 00:00:00 2001 From: lightningterror Date: Sat, 9 Feb 2019 01:05:47 +0100 Subject: [PATCH] [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. --- tools/GSDumpGUI/Forms/frmMain.cs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/tools/GSDumpGUI/Forms/frmMain.cs b/tools/GSDumpGUI/Forms/frmMain.cs index ddfb324cc7fd8..6014c99703c76 100644 --- a/tools/GSDumpGUI/Forms/frmMain.cs +++ b/tools/GSDumpGUI/Forms/frmMain.cs @@ -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)