diff --git a/engine/client/view.c b/engine/client/view.c index 182e666e2..5de0d77b4 100644 --- a/engine/client/view.c +++ b/engine/client/view.c @@ -1139,7 +1139,11 @@ void SCR_VRectForPlayer(vrect_t *vrect, int pnum) case 2: //horizontal bands case 3: #ifdef GLQUAKE - if (qrenderer == QR_OPENGL && vid.pixelwidth > vid.pixelheight * 2 && ffov.value >= 0) + if (qrenderer == QR_OPENGL && vid.pixelwidth > vid.pixelheight * 2 +#ifdef FISH + && ffov.value >= 0 +#endif + ) { //over twice as wide as high, assume duel moniter, horizontal. vrect->width = vid.width/cl.splitclients; vrect->height = vid.height;