debughudtracker: fix splitscreen drawing

This commit is contained in:
James R 2024-01-25 20:50:53 -08:00
parent 9c075b68ec
commit fa63dffe6b

View file

@ -574,7 +574,13 @@ void K_CullTargetList(std::vector<TargetTracking>& targetList)
if (cv_debughudtracker.value)
{
V_DrawFill(x * kBlockSize, y * kBlockSize, kBlockSize, kBlockSize, 39 + debugColorCycle);
V_DrawFill(
x * kBlockSize,
y * kBlockSize,
kBlockSize,
kBlockSize,
(39 + debugColorCycle) | V_SPLITSCREEN
);
}
}
}