Remove always true expression

This commit is contained in:
James R 2019-03-03 20:08:28 -08:00
parent 89ea7f548e
commit d93b9b5eba
1 changed files with 1 additions and 1 deletions

View File

@ -6901,7 +6901,7 @@ void G_DoPlayDemo(char *defdemoname)
if (titledemo)
{
splitscreen = M_RandomKey(6)-1;
splitscreen = min(min(3, numslots-1), max(0, splitscreen)); // Bias toward 1p and 4p views
splitscreen = min(min(3, numslots-1), splitscreen); // Bias toward 1p and 4p views
for (p = 0; p <= splitscreen; p++)
G_ResetView(p+1, slots[M_RandomKey(numslots)], false);