/// <summary>
 /// Handles the <see cref="Control.Click"/> event of the select path button.
 /// </summary>
 /// <remarks>
 /// This opens the folder selection dialog, so an override path can be selected.
 /// </remarks>
 /// <param name="sender">The object that raised the event.</param>
 /// <param name="e">An <see cref="EventArgs"/> describing the event arguments.</param>
 private void butSelectPath_Click(object sender, EventArgs e)
 {
     Discoverer.DisableButtonOk(GameMode.ModeId);
     fbdSelectPath.SelectedPath = tbxInstallPath.Text;
     if (fbdSelectPath.ShowDialog(this) == DialogResult.OK)
     {
         tbxInstallPath.Text = fbdSelectPath.SelectedPath;
     }
 }