aboutsummaryrefslogtreecommitdiffhomepage
path: root/backends/wininput.c
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2021-06-30 19:45:33 +0200
committercbdev <cb@cbcdn.com>2021-06-30 19:45:33 +0200
commit6fab3de48e129e1703f70941f65ae89853e567d5 (patch)
tree31e351212277976f1b6619d244f1100bda63d199 /backends/wininput.c
parent48880cb18dded1d95d52aec5bae55ff31dcf2ad5 (diff)
downloadmidimonster-6fab3de48e129e1703f70941f65ae89853e567d5.tar.gz
midimonster-6fab3de48e129e1703f70941f65ae89853e567d5.tar.bz2
midimonster-6fab3de48e129e1703f70941f65ae89853e567d5.zip
Fix spelling
Diffstat (limited to 'backends/wininput.c')
-rw-r--r--backends/wininput.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/wininput.c b/backends/wininput.c
index 1d1c85b..fc07328 100644
--- a/backends/wininput.c
+++ b/backends/wininput.c
@@ -111,11 +111,11 @@ static int request_comparator(const void * raw_a, const void * raw_b){
//joysticks need to be sorted by controller id first so we can query them once
if(a->ident.fields.type == joystick){
- //joystick id is in the upper bits of control and we dont actually care about anything else
+ //joystick id is in the upper bits of control and we don't actually care about anything else
return a->ident.fields.control - b->ident.fields.control;
}
- //the rest doesnt actually need to be sorted at all
+ //the rest doesn't actually need to be sorted at all
return 0;
}