mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-03 09:48:32 +00:00
Simplify std::fill
with std::array::fill
This commit is contained in:
parent
7db13d23c9
commit
809766a439
2 changed files with 2 additions and 2 deletions
|
@ -915,7 +915,7 @@ static void ResetRumbleLockNeeded()
|
|||
return;
|
||||
}
|
||||
|
||||
std::fill(std::begin(s_controller_rumble), std::end(s_controller_rumble), 0);
|
||||
s_controller_rumble.fill(0);
|
||||
|
||||
std::array<u8, CONTROLLER_OUTPUT_RUMBLE_PAYLOAD_SIZE> rumble = {
|
||||
0x11, s_controller_rumble[0], s_controller_rumble[1], s_controller_rumble[2],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue