CLIENT: Use qc_soft_restart on Web

This commit is contained in:
Steam Deck User 2023-03-05 11:13:12 -05:00
parent b8b54c06ac
commit 976a1844a5

View file

@ -44,7 +44,10 @@ void() menu_restart =
void() menu_resy =
{
localcmd("restart\n");
if (platform_is_web == false)
localcmd("restart\n");
else
localcmd("qc_soft_restart\n");
};
void() menu_resn =