Sega Genesis controller image added to input config
This commit is contained in:
parent
fb1d5ed822
commit
041b6e2aa9
|
@ -210,6 +210,9 @@
|
|||
<ItemGroup>
|
||||
<None Include="config\ControllerImages\PCEngineController.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="config\ControllerImages\GENController.png" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
|
|
|
@ -95,6 +95,13 @@ namespace BizHawk.MultiClient.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
internal static System.Drawing.Bitmap GENController {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("GENController", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
internal static System.Drawing.Bitmap InserSeparator {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("InserSeparator", resourceCulture);
|
||||
|
|
|
@ -133,6 +133,9 @@
|
|||
<data name="GBController" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\config\ControllerImages\GBController.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="GENController" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\config\ControllerImages\GENController.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="InserSeparator" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\images\InserSeparator.bmp;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
|
@ -20,6 +20,7 @@ namespace BizHawk.MultiClient
|
|||
private void DoSMS()
|
||||
{
|
||||
this.Text = ControllerStr + "SMS / GG / SG-1000";
|
||||
ControllerImage.Image = BizHawk.MultiClient.Properties.Resources.SMSController;
|
||||
|
||||
Label UpLabel = new Label();
|
||||
UpLabel.Text = "Up";
|
||||
|
@ -70,10 +71,6 @@ namespace BizHawk.MultiClient
|
|||
ButtonsGroupBox.Controls.Add(IButtonLabel);
|
||||
ButtonsGroupBox.Controls.Add(IIButton);
|
||||
ButtonsGroupBox.Controls.Add(IIButtonLabel);
|
||||
|
||||
|
||||
ControllerImage.Image = BizHawk.MultiClient.Properties.Resources.SMSController;
|
||||
|
||||
}
|
||||
|
||||
private void DoPCE()
|
||||
|
@ -85,6 +82,7 @@ namespace BizHawk.MultiClient
|
|||
private void DoGen()
|
||||
{
|
||||
this.Text = ControllerStr + "Sega Genesis";
|
||||
ControllerImage.Image = BizHawk.MultiClient.Properties.Resources.GENController;
|
||||
}
|
||||
|
||||
private void DoTI83()
|
||||
|
|
Loading…
Reference in New Issue