Fix logic oopsies in lives offset check

This commit is contained in:
NepDisk 2025-11-30 16:03:07 -05:00
parent 9a076cd88e
commit 5505c02fd5

View file

@ -2667,7 +2667,7 @@ static void K_drawKartStatsnLives(void)
INT32 offsety = 0;
boolean split = r_splitscreen == 1;
if ((cv_lives_xoffset.value == 0 || cv_lives_yoffset.value == 0) || split)
if ((cv_lives_xoffset.value == 0 && cv_lives_yoffset.value == 0) || split)
{
if ((cv_newspeedometer.value == 0 || cv_newspeedometer.value == 2) && !K_RingsActive() && !split)
{