Skip to content

Commit

Permalink
add macOS Sonoma name to f_system
Browse files Browse the repository at this point in the history
  • Loading branch information
timbergeron committed Sep 30, 2023
1 parent 6ee53c7 commit 198a076
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Quake/cl_parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -3039,7 +3039,9 @@ if (!strcmp(printtext, "Client ping times:\n") && (cl.expectingpingtimes > realt
}
else
{
if (!strncmp(buf2, "13.", 3))
if (!strncmp(buf2, "14.", 3))
os_codename = "macOS Sonoma (2023)";
else if (!strncmp(buf2, "13.", 3))
os_codename = "macOS Ventura (2022)";
else if (!strncmp(buf2, "12.", 3))
os_codename = "macOS Monterey (2021)";
Expand Down

0 comments on commit 198a076

Please sign in to comment.