diff options
| author | Rachel Bryk <RachelBryk@gmail.com> | 2013-09-22 17:32:11 -0400 |
|---|---|---|
| committer | Rachel Bryk <RachelBryk@gmail.com> | 2013-09-22 17:32:11 -0400 |
| commit | 12e7c22006552e6f93392504f19808a7030f7f7e (patch) | |
| tree | 03ba403b52f6cb0672b1973837fe7960c9cf7177 /Source/Core | |
| parent | 80b14e80b55c2c2832ef5f38796719efebd9e7d0 (diff) | |
Fix recording netplay with wiimote.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/Src/NetPlayClient.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/Core/Src/NetPlayClient.cpp b/Source/Core/Core/Src/NetPlayClient.cpp index d20c726a17..4e741ede1e 100644 --- a/Source/Core/Core/Src/NetPlayClient.cpp +++ b/Source/Core/Core/Src/NetPlayClient.cpp @@ -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); } |
