From b61c75703cec16329db9505c43b56769315bd228 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Sun, 10 Sep 2006 01:08:35 +0000 Subject: [PATCH] LastInputTick value should be in milliseconds, according to the help of GetTickCount in MSDN svn path=/trunk/; revision=24010 --- reactos/subsystems/win32/win32k/ntuser/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsystems/win32/win32k/ntuser/input.c b/reactos/subsystems/win32/win32k/ntuser/input.c index bdcbcba5ddb..e452751b8a2 100644 --- a/reactos/subsystems/win32/win32k/ntuser/input.c +++ b/reactos/subsystems/win32/win32k/ntuser/input.c @@ -76,7 +76,7 @@ DWORD IntLastInputTick(BOOL LastInputTickSetGet) { LARGE_INTEGER TickCount; KeQueryTickCount(&TickCount); - LastInputTick = TickCount.u.LowPart; + LastInputTick = TickCount.u.LowPart * (KeQueryTimeIncrement() / 10000); } return LastInputTick; }