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

The progress reports (e.g. "[ Done 100.0% ]") should never go to logs

parent b9fe6679
No related branches found
No related tags found
No related merge requests found
......@@ -1464,7 +1464,7 @@ int sbbs_t::backfill(const char* instr, float pct, int full_attr, int empty_attr
len = strlen(str);
if(!(term_supports()&(ANSI|PETSCII)))
bputs(str);
bputs(str, P_REMOTE);
else {
for(int i=0; i<len; i++) {
if(((float)(i+1) / len)*100.0 <= pct)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment