Skip to content
Snippets Groups Projects
Commit 430629d8 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Let time get big enough to be too big

Previous commit capped it too early.
parent fd5dd314
No related branches found
No related tags found
No related merge requests found
Pipeline #7700 passed
......@@ -378,8 +378,8 @@ update_status(struct bbslist *bbs, int speed, int ooii_mode, bool ata_inv)
lastmouse = newmouse;
oldspeed = speed;
timeon = now - bbs->fast_connected;
if (timeon > 350000)
timeon = 350000;
if (timeon > 360000)
timeon = 360000;
else if (timeon < 0)
timeon = 0;
gettextinfo(&txtinfo);
......
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