Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix recording netplay with wiimote.
  • Loading branch information
RachelBryk committed Sep 22, 2013
1 parent 80b14e8 commit 12e7c22
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/Core/Src/NetPlayClient.cpp
Expand Up @@ -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);
}
Expand Down

0 comments on commit 12e7c22

Please sign in to comment.