add Yellow arrows to project and use them for the N64 C buttons

This commit is contained in:
adelikat 2014-07-27 13:53:25 +00:00
parent b4416e8317
commit 6039b921d2
8 changed files with 63 additions and 7 deletions

View File

@ -1463,6 +1463,10 @@
<None Include="config\ControllerImages\GENController.png" />
</ItemGroup>
<ItemGroup>
<None Include="images\YellowUp.png" />
<None Include="images\YellowRight.png" />
<None Include="images\YellowLeft.png" />
<None Include="images\YellowDown.png" />
<None Include="images\user_blue.png" />
<None Include="images\thumbsdown.png" />
<None Include="images\monitor.png" />

View File

@ -1388,5 +1388,45 @@ namespace BizHawk.Client.EmuHawk.Properties {
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap YellowDown {
get {
object obj = ResourceManager.GetObject("YellowDown", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap YellowLeft {
get {
object obj = ResourceManager.GetObject("YellowLeft", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap YellowRight {
get {
object obj = ResourceManager.GetObject("YellowRight", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap YellowUp {
get {
object obj = ResourceManager.GetObject("YellowUp", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
}
}

View File

@ -942,4 +942,16 @@
<data name="user_blue" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\images\user_blue.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="YellowDown" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\images\YellowDown.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="YellowLeft" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\images\YellowLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="YellowRight" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\images\YellowRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="YellowUp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\images\YellowUp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

View File

@ -114,29 +114,29 @@ namespace BizHawk.Client.EmuHawk
new PadSchema.ButtonScema
{
Name = "P" + controller + " C Up",
DisplayName = "cU",
Icon = Properties.Resources.YellowUp,
Location = new Point(147, 235),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonScema
{
Name = "P" + controller + " C Down",
DisplayName = "cD",
Location = new Point(147, 281),
Icon = Properties.Resources.YellowDown,
Location = new Point(147, 256),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonScema
{
Name = "P" + controller + " C Left",
DisplayName = "cL",
Location = new Point(129, 258),
Icon = Properties.Resources.YellowLeft,
Location = new Point(126, 249),
Type = PadSchema.PadInputType.Boolean
},
new PadSchema.ButtonScema
{
Name = "P" + controller + " C Right",
DisplayName = "cR",
Location = new Point(164, 258),
Icon = Properties.Resources.YellowRight,
Location = new Point(168, 249),
Type = PadSchema.PadInputType.Boolean
}
}