Ploopy Trackball Mini: only define DPI options as needed (#16160)
This commit is contained in:
parent
8826a1dea5
commit
0d67eec5e2
1 changed files with 10 additions and 3 deletions
|
@ -37,9 +37,16 @@
|
||||||
# define OPT_SCALE 1 // Multiplier for wheel
|
# define OPT_SCALE 1 // Multiplier for wheel
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define PLOOPY_DPI_OPTIONS \
|
#ifndef PLOOPY_DPI_OPTIONS
|
||||||
|
# define PLOOPY_DPI_OPTIONS \
|
||||||
{ 375, 750, 1375 }
|
{ 375, 750, 1375 }
|
||||||
#define PLOOPY_DPI_DEFAULT 2
|
# ifndef PLOOPY_DPI_DEFAULT
|
||||||
|
# define PLOOPY_DPI_DEFAULT 1
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
#ifndef PLOOPY_DPI_DEFAULT
|
||||||
|
# define PLOOPY_DPI_DEFAULT 0
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef PLOOPY_DRAGSCROLL_DPI
|
#ifndef PLOOPY_DRAGSCROLL_DPI
|
||||||
# define PLOOPY_DRAGSCROLL_DPI 375 // Fixed-DPI Drag Scroll
|
# define PLOOPY_DRAGSCROLL_DPI 375 // Fixed-DPI Drag Scroll
|
||||||
|
|
Loading…
Reference in a new issue