summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-19 16:12:15 -0700
committerGravatar GitHub2018-07-19 16:12:15 -0700
commitf43d8ea523cb749631f130f13ec14ff56e84eb7e (patch)
tree4707f46447c09ff2455c43631472ab297958d494 /src
parentMerge pull request #721 from lioncash/svc (diff)
parenthid: Use a ranged-for loops in UpdatePadCallback (diff)
downloadyuzu-f43d8ea523cb749631f130f13ec14ff56e84eb7e.tar.gz
yuzu-f43d8ea523cb749631f130f13ec14ff56e84eb7e.tar.xz
yuzu-f43d8ea523cb749631f130f13ec14ff56e84eb7e.zip
Merge pull request #722 from lioncash/signed
hid: Resolve a signed/unsigned comparison warning
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/hid/hid.cpp10
-rw-r--r--src/core/hle/service/hid/hid.h2
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:
85 controller_header.left_color_buttons = JOYCON_BUTTONS_NEON_BLUE; 85 controller_header.left_color_buttons = JOYCON_BUTTONS_NEON_BLUE;
86 86
87 for (size_t controller = 0; controller < mem.controllers.size(); controller++) { 87 for (size_t controller = 0; controller < mem.controllers.size(); controller++) {
88 for (int index = 0; index < HID_NUM_LAYOUTS; index++) { 88 for (auto& layout : mem.controllers[controller].layouts) {
89 ControllerLayout& layout = mem.controllers[controller].layouts[index];
90 layout.header.num_entries = HID_NUM_ENTRIES; 89 layout.header.num_entries = HID_NUM_ENTRIES;
91 layout.header.max_entry_index = HID_NUM_ENTRIES - 1; 90 layout.header.max_entry_index = HID_NUM_ENTRIES - 1;
92 91
@@ -213,8 +212,7 @@ private:
213 keyboard.entries[curr_keyboard_entry].timestamp_2 = keyboard_sample_counter; 212 keyboard.entries[curr_keyboard_entry].timestamp_2 = keyboard_sample_counter;
214 213
215 // TODO(shinyquagsire23): Figure out what any of these are 214 // TODO(shinyquagsire23): Figure out what any of these are
216 for (size_t i = 0; i < mem.unk_input_1.size(); i++) { 215 for (auto& input : mem.unk_input_1) {
217 UnkInput1& input = mem.unk_input_1[i];
218 const u64 last_input_entry = input.header.latest_entry; 216 const u64 last_input_entry = input.header.latest_entry;
219 const u64 curr_input_entry = (input.header.latest_entry + 1) % input.entries.size(); 217 const u64 curr_input_entry = (input.header.latest_entry + 1) % input.entries.size();
220 const u64 input_sample_counter = input.entries[last_input_entry].timestamp + 1; 218 const u64 input_sample_counter = input.entries[last_input_entry].timestamp + 1;
@@ -228,9 +226,7 @@ private:
228 input.entries[curr_input_entry].timestamp_2 = input_sample_counter; 226 input.entries[curr_input_entry].timestamp_2 = input_sample_counter;
229 } 227 }
230 228
231 for (size_t i = 0; i < mem.unk_input_2.size(); i++) { 229 for (auto& input : mem.unk_input_2) {
232 UnkInput2& input = mem.unk_input_2[i];
233
234 input.header.timestamp_ticks = timestamp; 230 input.header.timestamp_ticks = timestamp;
235 input.header.num_entries = 17; 231 input.header.num_entries = 17;
236 input.header.latest_entry = 0; 232 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,
380 380
381struct Controller { 381struct Controller {
382 ControllerHeader header; 382 ControllerHeader header;
383 std::array<ControllerLayout, 7> layouts; 383 std::array<ControllerLayout, HID_NUM_LAYOUTS> layouts;
384 std::array<u8, 0x2a70> unk_1; 384 std::array<u8, 0x2a70> unk_1;
385 ControllerMAC mac_left; 385 ControllerMAC mac_left;
386 ControllerMAC mac_right; 386 ControllerMAC mac_right;