diff options
Diffstat (limited to 'driver')
-rw-r--r-- | driver/xf86-input-ws/src/ws.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/driver/xf86-input-ws/src/ws.h b/driver/xf86-input-ws/src/ws.h index 83029547b..0e0abc07e 100644 --- a/driver/xf86-input-ws/src/ws.h +++ b/driver/xf86-input-ws/src/ws.h @@ -35,17 +35,17 @@ extern int ws_debug_level; /* axis specific data for wheel */ typedef struct { - int negative; - int positive; - int traveled_distance; + int negative; + int positive; + int traveled_distance; } WheelAxis, *WheelAxisPtr; typedef struct WSDevice { - char *devName; /* device name */ - int type; /* ws device type */ - unsigned int lastButtons; /* last state of buttons */ + char *devName; /* device name */ + int type; /* ws device type */ + unsigned int lastButtons; /* last state of buttons */ int old_ax, old_ay; - int min_x, max_x, min_y, max_y; /* coord space */ + int min_x, max_x, min_y, max_y; /* coord space */ int swap_axes; int raw; int inv_x, inv_y; |