mirror of
https://github.com/libretro/pcsx2.git
synced 2024-11-27 03:10:31 +00:00
[skip ci] gsdumpgui: Auto select first GSdx dll on the list upon program launch.
This commit is contained in:
parent
46b70a72cb
commit
6e49139d0e
@ -148,9 +148,15 @@ namespace GSDumpGUI
|
||||
private void GSDumpGUI_Load(object sender, EventArgs e)
|
||||
{
|
||||
ReloadGSDXs();
|
||||
|
||||
// Auto select GS dump
|
||||
lstDumps.Focus();
|
||||
if (lstDumps.Items.Count > 0)
|
||||
lstDumps.SelectedIndex = 0;
|
||||
|
||||
// Auto select GSdx dll
|
||||
if (lstGSDX.Items.Count > 0)
|
||||
lstGSDX.SelectedIndex = 0;
|
||||
}
|
||||
|
||||
private void cmdBrowseGSDX_Click(object sender, EventArgs e)
|
||||
|
Loading…
Reference in New Issue
Block a user