diff --git a/src/g_party.cpp b/src/g_party.cpp index 0caad76b7..bb55c36d8 100644 --- a/src/g_party.cpp +++ b/src/g_party.cpp @@ -128,16 +128,15 @@ public: return; } - // Rendering stuff is not valid outside of levels. - if (!G_GamestateUsesLevel()) - { - return; - } - for (std::size_t i = 0; i < size(); ++i) { displayplayers[i] = at(i); - G_FixCamera(1 + i); + + // Camera is not valid outside of levels. + if (G_GamestateUsesLevel()) + { + G_FixCamera(1 + i); + } } r_splitscreen = size() - 1;