Skip to content
Snippets Groups Projects
Commit ab673a5c authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Replace use of msclock() with xp_timer()

it just seems it's even worst than Deuce thought. :-)
parent e95e145f
Branches
Tags
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2715 failed
......@@ -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.0F : 100.0F;
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment