diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-07-01 23:11:11 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2021-07-01 23:11:11 +0000 |
commit | c848ca62673689df20e7fef74d1d5180f37fcea6 (patch) | |
tree | a13db43d04e29585bc6b78fdd36462d6b5d84e67 /sys/src/9/port/devmouse.c | |
parent | 2929a3bf67225b16284fd21bb0298bddeac142d1 (diff) |
devmouse: default to no blanking instead of 30 minute blank timeout
Diffstat (limited to 'sys/src/9/port/devmouse.c')
-rw-r--r-- | sys/src/9/port/devmouse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/port/devmouse.c b/sys/src/9/port/devmouse.c index cec16c753..d09d6f7d5 100644 --- a/sys/src/9/port/devmouse.c +++ b/sys/src/9/port/devmouse.c @@ -98,7 +98,7 @@ static uchar buttonmap[8] = { static int mouseswap; static int scrollswap; static ulong mousetime; -static ulong blanktime = 30; /* in minutes; a half hour */ +static ulong blanktime; extern Memimage* gscreen; |