mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Why do compilers assume i don't know order of opperations? :(
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user