N64: Added the analog data to the (currently unused) mnemonic for the virtual pad
This commit is contained in:
parent
4de1389810
commit
d47b0b1cc1
|
@ -141,6 +141,8 @@ namespace BizHawk.MultiClient
|
||||||
input.Append(CD.Checked ? "d" : ".");
|
input.Append(CD.Checked ? "d" : ".");
|
||||||
input.Append(CL.Checked ? "l" : ".");
|
input.Append(CL.Checked ? "l" : ".");
|
||||||
input.Append(CR.Checked ? "r" : ".");
|
input.Append(CR.Checked ? "r" : ".");
|
||||||
|
input.Append(String.Format("{0:000}", AnalogControl1.X + 128));
|
||||||
|
input.Append(String.Format("{0:000}", AnalogControl1.Y + 128));
|
||||||
|
|
||||||
input.Append("|");
|
input.Append("|");
|
||||||
return input.ToString();
|
return input.ToString();
|
||||||
|
|
Loading…
Reference in New Issue