Why do compilers assume i don't know order of opperations? :(
This commit is contained in:
parent
184390d8d7
commit
0a093cf1b9
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue