blob: 66fc44c47bdf6b38bb5eee22bebfe366fb1799eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
// 3600 appears to be the maximum.
#define PLOOPY_DPI_OPTIONS { 300, 1200, 2400, 3600 }
#define PLOOPY_DPI_DEFAULT 3
#define POINTING_DEVICE_HIRES_SCROLL_ENABLE 1
// used as a divisor, though. the higher this is, the lower the output
// resolution.
#define POINTING_DEVICE_HIRES_SCROLL_MULTIPLIER 30
// otherwise the x/y have parity issues.
#define PLOOPY_DRAGSCROLL_INVERT 1
#define PLOOPY_DRAGSCROLL_DIVISOR_H 1.0
#define PLOOPY_DRAGSCROLL_DIVISOR_V 1.0
|