| summaryrefslogtreecommitdiff | 
diff options
| -rw-r--r-- | conf/pro1_mouse.conf | 4 | ||||
| -rw-r--r-- | include/relabsd/debug.h | 8 | 
2 files changed, 8 insertions, 4 deletions
| diff --git a/conf/pro1_mouse.conf b/conf/pro1_mouse.conf index 82dab38..2484f6d 100644 --- a/conf/pro1_mouse.conf +++ b/conf/pro1_mouse.conf @@ -1,3 +1,7 @@ +# There is an issue with how I do timeouts in SFOS, so we have to set a timeout. +# Apparently, any value above that one will also trigger the issue. +TO 999 +  # Pro1 mouse, just rename axis  # AXIS   MIN   MAX   FUZZ  FLAT  RESOLUTION  OPTIONS  X        0     0     0     0     0           not_abs,convert_to=Y diff --git a/include/relabsd/debug.h b/include/relabsd/debug.h index 6745779..025c312 100644 --- a/include/relabsd/debug.h +++ b/include/relabsd/debug.h @@ -5,19 +5,19 @@  #include <relabsd/util/macro.h>  #ifndef RELABSD_DEBUG_PROGRAM_FLOW -   #define RELABSD_DEBUG_PROGRAM_FLOW 1 +   #define RELABSD_DEBUG_PROGRAM_FLOW 0  #endif  #ifndef RELABSD_DEBUG_CONFIG -   #define RELABSD_DEBUG_CONFIG 1 +   #define RELABSD_DEBUG_CONFIG 0  #endif  #ifndef RELABSD_DEBUG_REAL_EVENTS -   #define RELABSD_DEBUG_REAL_EVENTS 1 +   #define RELABSD_DEBUG_REAL_EVENTS 0  #endif  #ifndef RELABSD_DEBUG_VIRTUAL_EVENTS -   #define RELABSD_DEBUG_VIRTUAL_EVENTS 1 +   #define RELABSD_DEBUG_VIRTUAL_EVENTS 0  #endif  #ifndef RELABSD_ENABLE_WARNINGS_OUTPUT | 


