Sega Genesis controller image added to input config

This commit is contained in:
andres.delikat 2011-01-29 19:06:34 +00:00
parent fb1d5ed822
commit 041b6e2aa9
5 changed files with 15 additions and 4 deletions

View File

@ -210,6 +210,9 @@
<ItemGroup> <ItemGroup>
<None Include="config\ControllerImages\PCEngineController.png" /> <None Include="config\ControllerImages\PCEngineController.png" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<None Include="config\ControllerImages\GENController.png" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <!-- 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. Other similar extension points exist, see Microsoft.Common.targets.

View File

@ -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 { internal static System.Drawing.Bitmap InserSeparator {
get { get {
object obj = ResourceManager.GetObject("InserSeparator", resourceCulture); object obj = ResourceManager.GetObject("InserSeparator", resourceCulture);

View File

@ -133,6 +133,9 @@
<data name="GBController" type="System.Resources.ResXFileRef, System.Windows.Forms"> <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> <value>..\config\ControllerImages\GBController.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </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"> <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> <value>..\images\InserSeparator.bmp;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -20,6 +20,7 @@ namespace BizHawk.MultiClient
private void DoSMS() private void DoSMS()
{ {
this.Text = ControllerStr + "SMS / GG / SG-1000"; this.Text = ControllerStr + "SMS / GG / SG-1000";
ControllerImage.Image = BizHawk.MultiClient.Properties.Resources.SMSController;
Label UpLabel = new Label(); Label UpLabel = new Label();
UpLabel.Text = "Up"; UpLabel.Text = "Up";
@ -70,10 +71,6 @@ namespace BizHawk.MultiClient
ButtonsGroupBox.Controls.Add(IButtonLabel); ButtonsGroupBox.Controls.Add(IButtonLabel);
ButtonsGroupBox.Controls.Add(IIButton); ButtonsGroupBox.Controls.Add(IIButton);
ButtonsGroupBox.Controls.Add(IIButtonLabel); ButtonsGroupBox.Controls.Add(IIButtonLabel);
ControllerImage.Image = BizHawk.MultiClient.Properties.Resources.SMSController;
} }
private void DoPCE() private void DoPCE()
@ -85,6 +82,7 @@ namespace BizHawk.MultiClient
private void DoGen() private void DoGen()
{ {
this.Text = ControllerStr + "Sega Genesis"; this.Text = ControllerStr + "Sega Genesis";
ControllerImage.Image = BizHawk.MultiClient.Properties.Resources.GENController;
} }
private void DoTI83() private void DoTI83()