[MPlayer-cvslog] CVS: main/vidix/drivers nvidia_vid.c,1.29,1.30

Reimar Döffinger CVS syncmail at mplayerhq.hu
Tue Sep 6 19:12:30 CEST 2005


CVS change done by Reimar Döffinger CVS

Update of /cvsroot/mplayer/main/vidix/drivers
In directory mail:/var2/tmp/cvs-serv13466/vidix/drivers

Modified Files:
	nvidia_vid.c 
Log Message:
Only older card version seem to make problems with y < 8 in text mode.


Index: nvidia_vid.c
===================================================================
RCS file: /cvsroot/mplayer/main/vidix/drivers/nvidia_vid.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- nvidia_vid.c	4 Sep 2005 21:00:07 -0000	1.29
+++ nvidia_vid.c	6 Sep 2005 17:12:28 -0000	1.30
@@ -530,7 +530,7 @@
     } else {
             // we can't adjust the window position correctly in textmode
             // setting y to 8 seems to work ok, though
-            if(!y)y = info->wy+8;
+            if(info->chip.arch < NV_ARCH_10 && y < 8) y = 8;
     }
     
 	    /* adjust negative output window variables */




More information about the MPlayer-cvslog mailing list