diff --git a/GUI.NET/Controls/BaseControl.cs b/GUI.NET/Controls/BaseControl.cs
index c8620f90..8457a94b 100644
--- a/GUI.NET/Controls/BaseControl.cs
+++ b/GUI.NET/Controls/BaseControl.cs
@@ -1,13 +1,14 @@
using System.Windows.Forms;
using System.Drawing;
using Mesen.GUI;
+using System;
namespace Mesen.GUI.Controls
{
public class BaseControl : UserControl
{
public static float DefaultFontSize = Program.IsMono ? 10 : 12;
-
+
public static string MonospaceFontFamily
{
get
@@ -20,6 +21,18 @@ namespace Mesen.GUI.Controls
}
}
+ public static Bitmap DownArrow
+ {
+ get
+ {
+ if(!Program.IsMono && Environment.OSVersion.Version >= new Version(6, 2)) {
+ return Properties.Resources.DownArrowWin10;
+ } else {
+ return Properties.Resources.DownArrow;
+ }
+ }
+ }
+
public new AutoScaleMode AutoScaleMode
{
set {
diff --git a/GUI.NET/Debugger/Controls/ctrlConsoleStatus.Designer.cs b/GUI.NET/Debugger/Controls/ctrlConsoleStatus.Designer.cs
index 1e8602c1..d4beb2c6 100644
--- a/GUI.NET/Debugger/Controls/ctrlConsoleStatus.Designer.cs
+++ b/GUI.NET/Debugger/Controls/ctrlConsoleStatus.Designer.cs
@@ -28,7 +28,6 @@
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ctrlConsoleStatus));
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.grpPPUStatus = new System.Windows.Forms.GroupBox();
this.tableLayoutPanel8 = new System.Windows.Forms.TableLayoutPanel();
@@ -1162,7 +1161,7 @@
//
this.btnGoto.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnGoto.AutoSize = true;
- this.btnGoto.Image = ((System.Drawing.Image)(resources.GetObject("btnGoto.Image")));
+ this.btnGoto.Image = global::Mesen.GUI.Properties.Resources.DownArrow;
this.btnGoto.Location = new System.Drawing.Point(378, 3);
this.btnGoto.Name = "btnGoto";
this.btnGoto.Size = new System.Drawing.Size(72, 23);
diff --git a/GUI.NET/Debugger/Controls/ctrlConsoleStatus.cs b/GUI.NET/Debugger/Controls/ctrlConsoleStatus.cs
index 28eb02f0..795ea97b 100644
--- a/GUI.NET/Debugger/Controls/ctrlConsoleStatus.cs
+++ b/GUI.NET/Debugger/Controls/ctrlConsoleStatus.cs
@@ -38,6 +38,8 @@ namespace Mesen.GUI.Debugger
this.Font = new Font("Microsoft Sans Serif", 7.75F);
}
+ btnGoto.Image = BaseControl.DownArrow;
+
_cpuBinder.Entity = new CPUState();
_ppuControlBinder.Entity = new PPUControlFlags();
_ppuStatusBinder.Entity = new PPUStatusFlags();
diff --git a/GUI.NET/Debugger/Controls/ctrlConsoleStatus.resx b/GUI.NET/Debugger/Controls/ctrlConsoleStatus.resx
index eadcf8d2..ec0f37aa 100644
--- a/GUI.NET/Debugger/Controls/ctrlConsoleStatus.resx
+++ b/GUI.NET/Debugger/Controls/ctrlConsoleStatus.resx
@@ -117,15 +117,6 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAAAcAAAAGCAYAAAAPDoR2AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAAYdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuNWWFMmUA
- AAArSURBVBhXY/j//z9OjFUQhkEARGLHUBUYEmBxJCNQJFAkwRwkif///zMAAD5AXaOzoq98AAAAAElF
- TkSuQmCC
-
-
17, 17
diff --git a/GUI.NET/Forms/Cheats/frmCheatList.Designer.cs b/GUI.NET/Forms/Cheats/frmCheatList.Designer.cs
index 4cab01f7..b2fa031a 100644
--- a/GUI.NET/Forms/Cheats/frmCheatList.Designer.cs
+++ b/GUI.NET/Forms/Cheats/frmCheatList.Designer.cs
@@ -29,7 +29,6 @@ namespace Mesen.GUI.Forms.Cheats
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCheatList));
this.tabMain = new System.Windows.Forms.TabControl();
this.tabCheats = new System.Windows.Forms.TabPage();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
@@ -234,11 +233,11 @@ namespace Mesen.GUI.Forms.Cheats
this.mnuDeleteCheat,
this.mnuExportSelectedCheats});
this.contextMenuCheats.Name = "contextMenuCheats";
- this.contextMenuCheats.Size = new System.Drawing.Size(160, 70);
+ this.contextMenuCheats.Size = new System.Drawing.Size(160, 92);
//
// mnuAddCheat
//
- this.mnuAddCheat.Image = ((System.Drawing.Image)(resources.GetObject("mnuAddCheat.Image")));
+ this.mnuAddCheat.Image = global::Mesen.GUI.Properties.Resources.Add;
this.mnuAddCheat.Name = "mnuAddCheat";
this.mnuAddCheat.ShortcutKeys = System.Windows.Forms.Keys.Insert;
this.mnuAddCheat.Size = new System.Drawing.Size(159, 22);
@@ -280,7 +279,7 @@ namespace Mesen.GUI.Forms.Cheats
//
// btnAddCheat
//
- this.btnAddCheat.Image = ((System.Drawing.Image)(resources.GetObject("btnAddCheat.Image")));
+ this.btnAddCheat.Image = global::Mesen.GUI.Properties.Resources.Add;
this.btnAddCheat.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnAddCheat.Name = "btnAddCheat";
this.btnAddCheat.Size = new System.Drawing.Size(83, 20);
diff --git a/GUI.NET/Forms/Cheats/frmCheatList.resx b/GUI.NET/Forms/Cheats/frmCheatList.resx
index a25d93b5..39a3a8ee 100644
--- a/GUI.NET/Forms/Cheats/frmCheatList.resx
+++ b/GUI.NET/Forms/Cheats/frmCheatList.resx
@@ -126,26 +126,7 @@
107, 17
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- vAAADrwBlbxySQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMK0KCsAAAACFSURBVDhPpZDR
- DYAgDET50An8dRjWczHWqlQ5bOqBEC95ooW+EoOI/OJ6xBjlC5e3oBXsuTNcoKsFNcS8cwGL3yvfXKCr
- hdVKnQtG0hVgQgucyeGCiXABJjE0y7FVcuZvoI1r2tsCOxFo7GQIwNAN0OiZEgA0girogVhBzvMPRrGT
- 75qEE3LcyzzdiXihAAAAAElFTkSuQmCC
-
-
267, 17
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACKSURBVDhPrY3LDYAwDEN7gAm4MkzXYzHWAgXyGlMoH4kn
- WZTEdtIv5JyXJykeC2qDwk49HgvUpGIGvD0WqKmm3tm/xwJM9lVdzUweC2z4ltsCLrSEx2MBy7d4LND2
- loxuGoo8uoPhCQv289gu0IvI0MsUoENBC4K1PhUggqgU3Am0YAt+5XQ5pbQCv1TxCMUky/oAAAAASUVO
- RK5CYII=
-
-
\ No newline at end of file
diff --git a/GUI.NET/Forms/Config/frmControllerConfig.Designer.cs b/GUI.NET/Forms/Config/frmControllerConfig.Designer.cs
index f7c7073a..d66ed7c6 100644
--- a/GUI.NET/Forms/Config/frmControllerConfig.Designer.cs
+++ b/GUI.NET/Forms/Config/frmControllerConfig.Designer.cs
@@ -242,7 +242,7 @@
//
this.btnSelectPreset.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.btnSelectPreset.AutoSize = true;
- this.btnSelectPreset.Image = ((System.Drawing.Image)(resources.GetObject("btnSelectPreset.Image")));
+ this.btnSelectPreset.Image = global::Mesen.GUI.Properties.Resources.DownArrow;
this.btnSelectPreset.Location = new System.Drawing.Point(3, 281);
this.btnSelectPreset.Name = "btnSelectPreset";
this.btnSelectPreset.Size = new System.Drawing.Size(105, 23);
diff --git a/GUI.NET/Forms/Config/frmControllerConfig.cs b/GUI.NET/Forms/Config/frmControllerConfig.cs
index 1f27e60b..baa896ca 100644
--- a/GUI.NET/Forms/Config/frmControllerConfig.cs
+++ b/GUI.NET/Forms/Config/frmControllerConfig.cs
@@ -8,6 +8,7 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Mesen.GUI.Config;
+using Mesen.GUI.Controls;
namespace Mesen.GUI.Forms.Config
{
@@ -34,6 +35,8 @@ namespace Mesen.GUI.Forms.Config
ctrlStandardController3.ShowMicrophone = true;
}
+ this.btnSelectPreset.Image = BaseControl.DownArrow;
+
ResourceHelper.ApplyResources(this, mnuStripPreset);
this.Text += ": " + ResourceHelper.GetMessage("PlayerNumber", (portNumber + 1).ToString());
diff --git a/GUI.NET/Forms/Config/frmControllerConfig.resx b/GUI.NET/Forms/Config/frmControllerConfig.resx
index 4fc9039a..66e3f97c 100644
--- a/GUI.NET/Forms/Config/frmControllerConfig.resx
+++ b/GUI.NET/Forms/Config/frmControllerConfig.resx
@@ -120,15 +120,6 @@
17, 17
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAAAcAAAAGCAYAAAAPDoR2AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAAYdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuNWWFMmUA
- AAArSURBVBhXY/j//z9OjFUQhkEARGLHUBUYEmBxJCNQJFAkwRwkif///zMAAD5AXaOzoq98AAAAAElF
- TkSuQmCC
-
-
242, 17
@@ -137,7 +128,7 @@
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAK
- CQAAAk1TRnQBSQFMAgEBAgEAATgBAAE4AQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
+ CQAAAk1TRnQBSQFMAgEBAgEAAUABAAFAAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
diff --git a/GUI.NET/Forms/Config/frmVideoConfig.Designer.cs b/GUI.NET/Forms/Config/frmVideoConfig.Designer.cs
index c4b00beb..3d344a7a 100644
--- a/GUI.NET/Forms/Config/frmVideoConfig.Designer.cs
+++ b/GUI.NET/Forms/Config/frmVideoConfig.Designer.cs
@@ -30,7 +30,6 @@ namespace Mesen.GUI.Forms.Config
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmVideoConfig));
this.tlpMain = new System.Windows.Forms.TableLayoutPanel();
this.lblVideoScale = new System.Windows.Forms.Label();
this.chkVerticalSync = new System.Windows.Forms.CheckBox();
@@ -450,23 +449,24 @@ namespace Mesen.GUI.Forms.Config
this.tableLayoutPanel7.Controls.Add(this.btnSelectPreset, 1, 0);
this.tableLayoutPanel7.Controls.Add(this.btnResetPictureSettings, 0, 0);
this.tableLayoutPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel7.Location = new System.Drawing.Point(0, 339);
+ this.tableLayoutPanel7.Location = new System.Drawing.Point(0, 341);
this.tableLayoutPanel7.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel7.Name = "tableLayoutPanel7";
this.tableLayoutPanel7.RowCount = 1;
this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel7.Size = new System.Drawing.Size(260, 31);
+ this.tableLayoutPanel7.Size = new System.Drawing.Size(260, 29);
this.tableLayoutPanel7.TabIndex = 3;
//
// btnSelectPreset
//
this.btnSelectPreset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnSelectPreset.AutoSize = true;
- this.btnSelectPreset.Image = ((System.Drawing.Image)(resources.GetObject("btnSelectPreset.Image")));
+ this.btnSelectPreset.Image = global::Mesen.GUI.Properties.Resources.DownArrow;
this.btnSelectPreset.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.btnSelectPreset.Location = new System.Drawing.Point(161, 5);
+ this.btnSelectPreset.Location = new System.Drawing.Point(158, 3);
this.btnSelectPreset.Name = "btnSelectPreset";
- this.btnSelectPreset.Size = new System.Drawing.Size(96, 23);
+ this.btnSelectPreset.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+ this.btnSelectPreset.Size = new System.Drawing.Size(99, 23);
this.btnSelectPreset.TabIndex = 3;
this.btnSelectPreset.Text = "Select Preset...";
this.btnSelectPreset.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage;
@@ -477,7 +477,7 @@ namespace Mesen.GUI.Forms.Config
//
this.btnResetPictureSettings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnResetPictureSettings.AutoSize = true;
- this.btnResetPictureSettings.Location = new System.Drawing.Point(3, 5);
+ this.btnResetPictureSettings.Location = new System.Drawing.Point(3, 3);
this.btnResetPictureSettings.Name = "btnResetPictureSettings";
this.btnResetPictureSettings.Size = new System.Drawing.Size(75, 23);
this.btnResetPictureSettings.TabIndex = 3;
@@ -699,7 +699,8 @@ namespace Mesen.GUI.Forms.Config
this.grpCommon.Location = new System.Drawing.Point(0, 27);
this.grpCommon.Margin = new System.Windows.Forms.Padding(0, 0, 2, 0);
this.grpCommon.Name = "grpCommon";
- this.grpCommon.Size = new System.Drawing.Size(258, 240);
+ this.grpCommon.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.grpCommon.Size = new System.Drawing.Size(258, 242);
this.grpCommon.TabIndex = 3;
this.grpCommon.TabStop = false;
this.grpCommon.Text = "Common Settings";
@@ -715,7 +716,7 @@ namespace Mesen.GUI.Forms.Config
this.tableLayoutPanel4.Controls.Add(this.trkHue, 0, 2);
this.tableLayoutPanel4.Controls.Add(this.trkSaturation, 0, 3);
this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 16);
+ this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 15);
this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel4.Name = "tableLayoutPanel4";
this.tableLayoutPanel4.RowCount = 5;
@@ -724,7 +725,7 @@ namespace Mesen.GUI.Forms.Config
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel4.Size = new System.Drawing.Size(252, 221);
+ this.tableLayoutPanel4.Size = new System.Drawing.Size(252, 225);
this.tableLayoutPanel4.TabIndex = 4;
//
// chkBilinearInterpolation
@@ -733,7 +734,7 @@ namespace Mesen.GUI.Forms.Config
this.tableLayoutPanel4.SetColumnSpan(this.chkBilinearInterpolation, 2);
this.chkBilinearInterpolation.Location = new System.Drawing.Point(3, 203);
this.chkBilinearInterpolation.Name = "chkBilinearInterpolation";
- this.chkBilinearInterpolation.Size = new System.Drawing.Size(206, 15);
+ this.chkBilinearInterpolation.Size = new System.Drawing.Size(206, 17);
this.chkBilinearInterpolation.TabIndex = 28;
this.chkBilinearInterpolation.Text = "Use bilinear interpolation when scaling";
this.chkBilinearInterpolation.UseVisualStyleBackColor = true;
@@ -802,7 +803,7 @@ namespace Mesen.GUI.Forms.Config
//
this.grpScanlines.Controls.Add(this.trkScanlines);
this.grpScanlines.Dock = System.Windows.Forms.DockStyle.Fill;
- this.grpScanlines.Location = new System.Drawing.Point(0, 267);
+ this.grpScanlines.Location = new System.Drawing.Point(0, 269);
this.grpScanlines.Margin = new System.Windows.Forms.Padding(0, 0, 2, 0);
this.grpScanlines.Name = "grpScanlines";
this.grpScanlines.Size = new System.Drawing.Size(258, 72);
@@ -1205,7 +1206,7 @@ namespace Mesen.GUI.Forms.Config
//
this.btnSelectPalette.AutoSize = true;
this.btnSelectPalette.Dock = System.Windows.Forms.DockStyle.Top;
- this.btnSelectPalette.Image = ((System.Drawing.Image)(resources.GetObject("btnSelectPalette.Image")));
+ this.btnSelectPalette.Image = global::Mesen.GUI.Properties.Resources.DownArrow;
this.btnSelectPalette.Location = new System.Drawing.Point(3, 3);
this.btnSelectPalette.Name = "btnSelectPalette";
this.btnSelectPalette.Size = new System.Drawing.Size(175, 23);
diff --git a/GUI.NET/Forms/Config/frmVideoConfig.cs b/GUI.NET/Forms/Config/frmVideoConfig.cs
index 7514c289..1353146c 100644
--- a/GUI.NET/Forms/Config/frmVideoConfig.cs
+++ b/GUI.NET/Forms/Config/frmVideoConfig.cs
@@ -73,6 +73,9 @@ namespace Mesen.GUI.Forms.Config
toolTip.SetToolTip(picHdNesTooltip, ResourceHelper.GetMessage("HDNesTooltip"));
+ btnSelectPreset.Image = BaseControl.DownArrow;
+ btnSelectPalette.Image = BaseControl.DownArrow;
+
UpdateOverscanImage();
ResourceHelper.ApplyResources(this, contextPaletteList);
diff --git a/GUI.NET/Forms/Config/frmVideoConfig.resx b/GUI.NET/Forms/Config/frmVideoConfig.resx
index 84eae7c6..d5774fc6 100644
--- a/GUI.NET/Forms/Config/frmVideoConfig.resx
+++ b/GUI.NET/Forms/Config/frmVideoConfig.resx
@@ -120,23 +120,6 @@
17, 17
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAAAcAAAAGCAYAAAAPDoR2AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAAYdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuNWWFMmUA
- AAArSURBVBhXY/j//z9OjFUQhkEARGLHUBUYEmBxJCNQJFAkwRwkif///zMAAD5AXaOzoq98AAAAAElF
- TkSuQmCC
-
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAAAcAAAAGCAYAAAAPDoR2AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAAYdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuNWWFMmUA
- AAArSURBVBhXY/j//z9OjFUQhkEARGLHUBUYEmBxJCNQJFAkwRwkif///zMAAD5AXaOzoq98AAAAAElF
- TkSuQmCC
-
-
221, 17
diff --git a/GUI.NET/GUI.NET.csproj b/GUI.NET/GUI.NET.csproj
index 7825956a..8f2b30a3 100644
--- a/GUI.NET/GUI.NET.csproj
+++ b/GUI.NET/GUI.NET.csproj
@@ -846,6 +846,7 @@
+
@@ -924,6 +925,7 @@
ctrlConsoleStatus.cs
+ Designer
ctrlDebuggerCode.cs
@@ -1043,6 +1045,7 @@
frmControllerConfig.cs
+ Designer
frmCopyFiles.cs
@@ -1068,6 +1071,7 @@
frmCheatList.cs
+ Designer
frmVsGameConfig.cs
@@ -1077,6 +1081,7 @@
frmAbout.cs
+ Designer
frmConfigWizard.cs
@@ -1101,6 +1106,7 @@
frmUpdatePrompt.cs
+ Designer
frmHdPackEditor.cs
diff --git a/GUI.NET/Properties/Resources.Designer.cs b/GUI.NET/Properties/Resources.Designer.cs
index 8155c4db..c3c44a0d 100644
--- a/GUI.NET/Properties/Resources.Designer.cs
+++ b/GUI.NET/Properties/Resources.Designer.cs
@@ -280,6 +280,16 @@ namespace Mesen.GUI.Properties {
}
}
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap DownArrowWin10 {
+ get {
+ object obj = ResourceManager.GetObject("DownArrowWin10", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
diff --git a/GUI.NET/Properties/Resources.resx b/GUI.NET/Properties/Resources.resx
index 9cb0a6b4..c0523a14 100644
--- a/GUI.NET/Properties/Resources.resx
+++ b/GUI.NET/Properties/Resources.resx
@@ -355,4 +355,7 @@
..\Resources\Exclamation.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\DownArrowWin10.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
\ No newline at end of file
diff --git a/GUI.NET/Resources/DownArrowWin10.png b/GUI.NET/Resources/DownArrowWin10.png
new file mode 100644
index 00000000..6782508f
Binary files /dev/null and b/GUI.NET/Resources/DownArrowWin10.png differ