~ruther/qmk_firmware

c70ebd4a0e27009a9baf4c8f74379dae6c55b461 — Taro Hayashi 1 year, 23 days ago 2a4c746
Fix pointing_device_set_cpi_on_side() (#23391)

Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
1 files changed, 1 insertions(+), 1 deletions(-)

M quantum/pointing_device/pointing_device.c
M quantum/pointing_device/pointing_device.c => quantum/pointing_device/pointing_device.c +1 -1
@@ 368,7 368,7 @@ void pointing_device_set_cpi(uint16_t cpi) {
 * @param[in] cpi uint16_t value.
 */
void pointing_device_set_cpi_on_side(bool left, uint16_t cpi) {
    bool local = (is_keyboard_left() & left) ? true : false;
    bool local = (is_keyboard_left() == left);
    if (local) {
        pointing_device_driver.set_cpi(cpi);
    } else {

Do not follow this link