Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Commits
d2eda12d
Commit
d2eda12d
authored
Feb 12, 2022
by
Deucе
👌🏾
Browse files
Fix Win32 builds maybe?
parent
e0ec4140
Pipeline
#2718
failed with stage
in 4 minutes and 27 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/xpdev/genwrap.c
src/xpdev/genwrap.c
+1
-2
No files found.
src/xpdev/genwrap.c
View file @
d2eda12d
...
...
@@ -844,9 +844,8 @@ uint64_t xp_timer64(void)
#elif defined(_WIN32)
LARGE_INTEGER
freq
;
LARGE_INTEGER
tick
;
if
(
if
(
QueryPerformanceFrequency
(
&
freq
)
&&
QueryPerformanceCounter
(
&
tick
))
{
static
BOOL
intable
=
(
freq
%
1000
)
==
0
;
static
BOOL
intable
=
(
freq
%
1000
)
==
0
;
if
(
intable
)
ret
=
tick
.
QuadPart
/
(
freq
.
QuadPart
/
1000
);
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment