mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2025-02-17 00:16:20 +01:00
parent
a5f51f78e9
commit
112b550473
3
DS4Windows/DS4Forms/DS4Form.Designer.cs
generated
3
DS4Windows/DS4Forms/DS4Form.Designer.cs
generated
@ -129,7 +129,6 @@
|
|||||||
this.cBFlashWhenLate = new System.Windows.Forms.CheckBox();
|
this.cBFlashWhenLate = new System.Windows.Forms.CheckBox();
|
||||||
this.cBCloseMini = new System.Windows.Forms.CheckBox();
|
this.cBCloseMini = new System.Windows.Forms.CheckBox();
|
||||||
this.cBQuickCharge = new System.Windows.Forms.CheckBox();
|
this.cBQuickCharge = new System.Windows.Forms.CheckBox();
|
||||||
this.cBUseWhiteIcon = new System.Windows.Forms.CheckBox();
|
|
||||||
this.cBDownloadLangauge = new System.Windows.Forms.CheckBox();
|
this.cBDownloadLangauge = new System.Windows.Forms.CheckBox();
|
||||||
this.cBUpdate = new System.Windows.Forms.CheckBox();
|
this.cBUpdate = new System.Windows.Forms.CheckBox();
|
||||||
this.pNUpdate = new System.Windows.Forms.Panel();
|
this.pNUpdate = new System.Windows.Forms.Panel();
|
||||||
@ -138,6 +137,7 @@
|
|||||||
this.nUDUpdateTime = new System.Windows.Forms.NumericUpDown();
|
this.nUDUpdateTime = new System.Windows.Forms.NumericUpDown();
|
||||||
this.pnlXIPorts = new System.Windows.Forms.Panel();
|
this.pnlXIPorts = new System.Windows.Forms.Panel();
|
||||||
this.lbUseXIPorts = new System.Windows.Forms.Label();
|
this.lbUseXIPorts = new System.Windows.Forms.Label();
|
||||||
|
this.cBUseWhiteIcon = new System.Windows.Forms.CheckBox();
|
||||||
this.nUDXIPorts = new System.Windows.Forms.NumericUpDown();
|
this.nUDXIPorts = new System.Windows.Forms.NumericUpDown();
|
||||||
this.lbLastXIPort = new System.Windows.Forms.Label();
|
this.lbLastXIPort = new System.Windows.Forms.Label();
|
||||||
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
|
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
|
||||||
@ -152,6 +152,7 @@
|
|||||||
this.cMCustomLed = new System.Windows.Forms.ContextMenuStrip(this.components);
|
this.cMCustomLed = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||||
this.useProfileColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
this.useProfileColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.useCustomColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
this.useCustomColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
|
this.advColorDialog = new AdvancedColorDialog();
|
||||||
this.pnlButton.SuspendLayout();
|
this.pnlButton.SuspendLayout();
|
||||||
this.cMTaskbar.SuspendLayout();
|
this.cMTaskbar.SuspendLayout();
|
||||||
this.tabMain.SuspendLayout();
|
this.tabMain.SuspendLayout();
|
||||||
|
@ -135,7 +135,16 @@ namespace DS4Windows
|
|||||||
private void closeFileStreamIO()
|
private void closeFileStreamIO()
|
||||||
{
|
{
|
||||||
if (fileStream != null)
|
if (fileStream != null)
|
||||||
fileStream.Close();
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
fileStream.Close();
|
||||||
|
}
|
||||||
|
catch (IOException)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fileStream = null;
|
fileStream = null;
|
||||||
Console.WriteLine("Close fs");
|
Console.WriteLine("Close fs");
|
||||||
if (safeReadHandle != null && !safeReadHandle.IsInvalid)
|
if (safeReadHandle != null && !safeReadHandle.IsInvalid)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user