Fix recording netplay with wiimote.

This commit is contained in:
Rachel Bryk 2013-09-22 17:32:11 -04:00
parent 80b14e80b5
commit 12e7c22006
1 changed files with 2 additions and 0 deletions

View File

@ -491,6 +491,8 @@ bool NetPlayClient::StartGame(const std::string &path)
{
if (m_pad_map[i] > 0)
controllers_mask |= (1 << i);
if (m_wiimote_map[i] > 0)
controllers_mask |= (1 << i + 4);
}
Movie::BeginRecordingInput(controllers_mask);
}