Skip to content

Commit

Permalink
Added TS status to Menu
Browse files Browse the repository at this point in the history
  • Loading branch information
sithtoast committed Sep 12, 2023
1 parent 72440f7 commit 715bebd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ static void printSysInfo()
net = getNet(3);
if (net)
{
sprintf(str, "\x1c %s", net);
sprintf(str, "\x1c VPN %s", net);
infowrite(n++, str);
j++;
}
Expand Down Expand Up @@ -6982,6 +6982,7 @@ void HandleUI(void)
int n = 8;
if (getNet(2)) str[n++] = 0x1d;
if (getNet(1)) str[n++] = 0x1c;
if (getNet(3)) str[n++] = 0x56;
if (hci_get_route(0) >= 0) str[n++] = 4;
if (user_io_get_sdram_cfg() & 0x8000)
{
Expand Down

0 comments on commit 715bebd

Please sign in to comment.