summaryrefslogtreecommitdiff
path: root/src/input_common/keyboard.cpp
diff options
context:
space:
mode:
authorGravatar Ameer2020-06-23 17:37:15 -0400
committerGravatar Ameer2020-06-23 17:37:15 -0400
commit743e1f02a06187164d55f4208b8e85742abd4498 (patch)
tree6eeeaddbc7cc3dac770c1d2efada1f4e68394939 /src/input_common/keyboard.cpp
parentFix deallocation of GC Adapter (diff)
downloadyuzu-743e1f02a06187164d55f4208b8e85742abd4498.tar.gz
yuzu-743e1f02a06187164d55f4208b8e85742abd4498.tar.xz
yuzu-743e1f02a06187164d55f4208b8e85742abd4498.zip
cleanup check access, read, and factory GetNextInput funcs. Use size rather than magic number
Diffstat (limited to 'src/input_common/keyboard.cpp')
-rw-r--r--src/input_common/keyboard.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/input_common/keyboard.cpp b/src/input_common/keyboard.cpp
index 9138a7563..eb6c3112b 100644
--- a/src/input_common/keyboard.cpp
+++ b/src/input_common/keyboard.cpp
@@ -51,7 +51,6 @@ public:
51 for (const KeyButtonPair& pair : list) { 51 for (const KeyButtonPair& pair : list) {
52 if (pair.key_code == key_code) { 52 if (pair.key_code == key_code) {
53 pair.key_button->status.store(pressed); 53 pair.key_button->status.store(pressed);
54 break;
55 } 54 }
56 } 55 }
57 } 56 }