Skip to content
Snippets Groups Projects
Commit 781f1114 authored by deuce's avatar deuce
Browse files

Fix character pacing correctly.

parent ae167dfa
No related branches found
No related tags found
No related merge requests found
...@@ -1228,13 +1228,13 @@ BOOL doterm(struct bbslist *bbs) ...@@ -1228,13 +1228,13 @@ BOOL doterm(struct bbslist *bbs)
sleep=TRUE; sleep=TRUE;
if(!speed && bbs->bpsrate) if(!speed && bbs->bpsrate)
speed = bbs->bpsrate; speed = bbs->bpsrate;
if(speed)
thischar=xp_timer();
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=xp_timer();
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