PCE controller in input config
This commit is contained in:
parent
cc8bb460d7
commit
fb1d5ed822
|
@ -204,6 +204,12 @@
|
|||
<ItemGroup>
|
||||
<None Include="config\ControllerImages\GBController.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="config\ControllerImages\220px-TurboGrafx-16-Controller.jpg" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="config\ControllerImages\PCEngineController.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.
|
||||
|
|
|
@ -102,6 +102,13 @@ namespace BizHawk.MultiClient.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
internal static System.Drawing.Bitmap PCEngineController {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("PCEngineController", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
internal static System.Drawing.Bitmap poke {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("poke", resourceCulture);
|
||||
|
|
|
@ -136,6 +136,9 @@
|
|||
<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>
|
||||
<data name="PCEngineController" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\config\ControllerImages\PCEngineController.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="poke" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\images\poke.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
|
@ -79,6 +79,7 @@ namespace BizHawk.MultiClient
|
|||
private void DoPCE()
|
||||
{
|
||||
this.Text = ControllerStr + "PCEjin / SGX";
|
||||
ControllerImage.Image = BizHawk.MultiClient.Properties.Resources.PCEngineController;
|
||||
}
|
||||
|
||||
private void DoGen()
|
||||
|
|
Loading…
Reference in New Issue