http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9b8d5c6
)
Fix non-RTDSC case for QueryPerformanceFrequency.
author
Lionel Ulmer
<lionel.ulmer@free.fr>
Mon, 27 Dec 2004 17:16:39 +0000
(17:16 +0000)
committer
Alexandre Julliard
<julliard@winehq.org>
Mon, 27 Dec 2004 17:16:39 +0000
(17:16 +0000)
dlls/kernel/cpu.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/kernel/cpu.c
b/dlls/kernel/cpu.c
index ca97249ba0b5dcfd34bab7fc41f025f9a84c91de..90fd6eb829ec72f2ac8db4ac522a61acf17a26ec 100644
(file)
--- a/
dlls/kernel/cpu.c
+++ b/
dlls/kernel/cpu.c
@@
-226,7
+226,7
@@
BOOL WINAPI QueryPerformanceFrequency(PLARGE_INTEGER frequency)
return TRUE;
}
#endif
- frequency->u.LowPart = 1000000;
+ frequency->u.LowPart = 1000000
0
;
frequency->u.HighPart = 0;
return TRUE;
}