diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-19 16:12:15 -0700 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-19 16:12:15 -0700 | 
| commit | f43d8ea523cb749631f130f13ec14ff56e84eb7e (patch) | |
| tree | 4707f46447c09ff2455c43631472ab297958d494 | |
| parent | 21943082453d4c6d5df0f59ad9c930947e7f6f1e (diff) | |
| parent | a37a47448dff6b19f1828f83f96cc8efce129d64 (diff) | |
Merge pull request #722 from lioncash/signed
hid: Resolve a signed/unsigned comparison warning
| -rw-r--r-- | src/core/hle/service/hid/hid.cpp | 10 | ||||
| -rw-r--r-- | src/core/hle/service/hid/hid.h | 2 | 
2 files changed, 4 insertions, 8 deletions
| diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 4f18c0fd3..475a0a5cf 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -85,8 +85,7 @@ private:          controller_header.left_color_buttons = JOYCON_BUTTONS_NEON_BLUE;          for (size_t controller = 0; controller < mem.controllers.size(); controller++) { -            for (int index = 0; index < HID_NUM_LAYOUTS; index++) { -                ControllerLayout& layout = mem.controllers[controller].layouts[index]; +            for (auto& layout : mem.controllers[controller].layouts) {                  layout.header.num_entries = HID_NUM_ENTRIES;                  layout.header.max_entry_index = HID_NUM_ENTRIES - 1; @@ -213,8 +212,7 @@ private:          keyboard.entries[curr_keyboard_entry].timestamp_2 = keyboard_sample_counter;          // TODO(shinyquagsire23): Figure out what any of these are -        for (size_t i = 0; i < mem.unk_input_1.size(); i++) { -            UnkInput1& input = mem.unk_input_1[i]; +        for (auto& input : mem.unk_input_1) {              const u64 last_input_entry = input.header.latest_entry;              const u64 curr_input_entry = (input.header.latest_entry + 1) % input.entries.size();              const u64 input_sample_counter = input.entries[last_input_entry].timestamp + 1; @@ -228,9 +226,7 @@ private:              input.entries[curr_input_entry].timestamp_2 = input_sample_counter;          } -        for (size_t i = 0; i < mem.unk_input_2.size(); i++) { -            UnkInput2& input = mem.unk_input_2[i]; - +        for (auto& input : mem.unk_input_2) {              input.header.timestamp_ticks = timestamp;              input.header.num_entries = 17;              input.header.latest_entry = 0; diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h index b499308d6..e298f23a6 100644 --- a/src/core/hle/service/hid/hid.h +++ b/src/core/hle/service/hid/hid.h @@ -380,7 +380,7 @@ static_assert(sizeof(ControllerLayout) == 0x350,  struct Controller {      ControllerHeader header; -    std::array<ControllerLayout, 7> layouts; +    std::array<ControllerLayout, HID_NUM_LAYOUTS> layouts;      std::array<u8, 0x2a70> unk_1;      ControllerMAC mac_left;      ControllerMAC mac_right; | 
