Skip to content
Snippets Groups Projects
Commit 8ddd460f authored by deuce's avatar deuce
Browse files

Assume that xp_timer() values cannot wrap.

Fixes character pacing for no apparent reason.
parent cb79302f
Branches
Tags
No related merge requests found
...@@ -1234,7 +1234,7 @@ BOOL doterm(struct bbslist *bbs) ...@@ -1234,7 +1234,7 @@ BOOL doterm(struct bbslist *bbs)
if(!term.nostatus) if(!term.nostatus)
update_status(bbs, speed); update_status(bbs, speed);
for(remain=conn_data_waiting() /* Hack for connection check */ + (!conn_connected()); remain; remain--) { for(remain=conn_data_waiting() /* Hack for connection check */ + (!conn_connected()); remain; remain--) {
if(!speed || thischar < lastchar /* Wrapped */ || thischar >= nextchar) { if((!speed) /* || thischar < lastchar Wrapped */ || thischar >= nextchar) {
/* Get remote input */ /* Get remote input */
inch=recv_byte(NULL, 0); inch=recv_byte(NULL, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment