Fix PCE input recording

This commit is contained in:
andres.delikat 2011-05-18 23:53:19 +00:00
parent 2a3f7cde37
commit 0da8d9da00
1 changed files with 2 additions and 0 deletions

View File

@ -163,6 +163,8 @@ namespace BizHawk.MultiClient
if (type.Name == "PC Engine Controller")
{
input.Append("."); //TODO: reset goes here
input.Append("|");
for (int i = 1; i < 6; i++)
{
input.Append(IsPressed("P" + i.ToString() + " Up") ? "U" : ".");