Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Why do compilers assume i don't know order of opperations? :(
  • Loading branch information
RachelBryk committed Sep 23, 2013
1 parent 184390d commit 0a093cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/Src/NetPlayClient.cpp
Expand Up @@ -492,7 +492,7 @@ 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);
controllers_mask |= (1 << (i + 4));
}
Movie::BeginRecordingInput(controllers_mask);
}
Expand Down

0 comments on commit 0a093cf

Please sign in to comment.