forked from fte/fteqw
1
0
Fork 0

Fixes minimal target.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3586 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2010-08-16 09:25:23 +00:00
parent 918833a763
commit 11d870ac27
1 changed files with 5 additions and 1 deletions

View File

@ -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;