diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-11-25 19:11:56 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-11-25 19:11:56 +0000 |
commit | 2fef489ac4af335b195cb5deec277253e382e7b0 (patch) | |
tree | 7433671ee04d6784bd422bb6c55e3db40f90506e /driver/xf86-input-ws/src/ws.c | |
parent | 0c34c8660bb675c8ee05f7fa1b9fb66ee2a4a8f4 (diff) |
The raw mode is a lot more useful now. So enable it by default.
Diffstat (limited to 'driver/xf86-input-ws/src/ws.c')
-rw-r--r-- | driver/xf86-input-ws/src/ws.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/xf86-input-ws/src/ws.c b/driver/xf86-input-ws/src/ws.c index 0c6814c21..b2e60152d 100644 --- a/driver/xf86-input-ws/src/ws.c +++ b/driver/xf86-input-ws/src/ws.c @@ -13,7 +13,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $OpenBSD: ws.c,v 1.20 2009/11/25 18:14:23 matthieu Exp $ */ +/* $OpenBSD: ws.c,v 1.21 2009/11/25 19:11:55 matthieu Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -285,7 +285,7 @@ wsPreInit(InputDriverPtr drv, IDevPtr dev, int flags) " or \"UD\"\n"); } } - priv->raw = xf86SetBoolOption(pInfo->options, "Raw", 0); + priv->raw = xf86SetBoolOption(pInfo->options, "Raw", 1); if (wsOpen(pInfo) != Success) { goto fail; } |