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
ab673a5c
Commit
ab673a5c
authored
Feb 11, 2022
by
Rob Swindell
💬
Browse files
Replace use of msclock() with xp_timer()
it just seems it's even worst than Deuce thought. :-)
parent
e95e145f
Pipeline
#2715
failed with stage
in 16 minutes and 43 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/sbbs3/con_out.cpp
src/sbbs3/con_out.cpp
+2
-2
src/sbbs3/sbbs.h
src/sbbs3/sbbs.h
+1
-1
No files found.
src/sbbs3/con_out.cpp
View file @
ab673a5c
...
...
@@ -1398,8 +1398,8 @@ void sbbs_t::progress(const char* text, int count, int total, int interval)
if
(
cfg
.
node_num
==
0
)
return
;
// Don't output this for events
clock_t
now
=
msclock
();
if
(
now
-
last_progress
<
interval
)
double
now
=
xp_timer
();
if
(
(
now
-
last_progress
)
*
1000
<
interval
)
return
;
if
(
text
==
NULL
)
text
=
""
;
float
pct
=
total
?
((
float
)
count
/
total
)
*
100.0
F
:
100.0
F
;
...
...
src/sbbs3/sbbs.h
View file @
ab673a5c
...
...
@@ -848,7 +848,7 @@ public:
bool
update_nodeterm
(
void
);
int
backfill
(
const
char
*
str
,
float
pct
,
int
full_attr
,
int
empty_attr
);
void
progress
(
const
char
*
str
,
int
count
,
int
total
,
int
interval
=
500
);
clock_t
last_progress
=
0
;
double
last_progress
=
0
;
bool
saveline
(
void
);
bool
restoreline
(
void
);
int
petscii_to_ansibbs
(
unsigned
char
);
...
...
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