N64: Added the analog data to the (currently unused) mnemonic for the virtual pad

This commit is contained in:
pjgat09 2013-05-27 01:31:29 +00:00
parent 4de1389810
commit d47b0b1cc1
1 changed files with 2 additions and 0 deletions

View File

@ -141,6 +141,8 @@ namespace BizHawk.MultiClient
input.Append(CD.Checked ? "d" : ".");
input.Append(CL.Checked ? "l" : ".");
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("|");
return input.ToString();