Skip to content
Snippets Groups Projects
Unverified Commit bd697bef authored by Ameer J's avatar Ameer J Committed by GitHub
Browse files

left const auto&, comment punctuation.


Co-authored-by: default avatarMorph <39850852+Morph1984@users.noreply.github.com>
parent ecbc8137
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ GCPadStatus Adapter::GetPadStatus(int port, const std::array<u8, 37>& adapter_pa
}
void Adapter::PadToState(const GCPadStatus& pad, GCState& state) {
for (auto const& button : PadButtonArray) {
for (const auto& button : PadButtonArray) {
u16 button_value = static_cast<u16>(button);
state.buttons.insert_or_assign(button_value, pad.button & button_value);
}
......@@ -213,7 +213,7 @@ bool Adapter::CheckDeviceAccess(libusb_device* device) {
}
if (desc.idVendor != 0x057e || desc.idProduct != 0x0337) {
// This isn’t the device we are looking for.
// This isn't the device we are looking for.
return false;
}
const int open_error = libusb_open(device, &usb_adapter_handle);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment