swaybar: fix typo in comment

This commit is contained in:
Nathan Schulte 2020-10-03 15:51:12 -05:00
parent 4799cb0960
commit e4f5e7ec90

View file

@ -303,7 +303,7 @@ static void wl_pointer_frame(void *data, struct wl_pointer *wl_pointer) {
for (uint32_t axis = 0; axis < 2; ++axis) { for (uint32_t axis = 0; axis < 2; ++axis) {
if (seat->axis[axis].discrete_steps) { if (seat->axis[axis].discrete_steps) {
for (uint32_t step = 0; step < seat->axis[axis].discrete_steps; ++step) { for (uint32_t step = 0; step < seat->axis[axis].discrete_steps; ++step) {
// Honestly, it would probabyl make sense to pass in // Honestly, it would probably make sense to pass in
// 'seat->axis[axis].value / seat->axis[axi].discrete_steps' here, // 'seat->axis[axis].value / seat->axis[axi].discrete_steps' here,
// but it's only used to check whether it's positive or negative // but it's only used to check whether it's positive or negative
// so I don't think it's worth the risk of rounding errors. // so I don't think it's worth the risk of rounding errors.