# HG changeset patch # User faust3 # Date 1089143823 0 # Node ID c857885bf049dacbf41a45ab8745757a783acefa # Parent 931eee818c52beb42f91c89a9dad4ac7ee53c5c2 default is now to center the image diff -r 931eee818c52 -r c857885bf049 libvo/vo_cvidix.c --- a/libvo/vo_cvidix.c Tue Jul 06 13:52:56 2004 +0000 +++ b/libvo/vo_cvidix.c Tue Jul 06 19:57:03 2004 +0000 @@ -47,7 +47,7 @@ static uint32_t setup_vidix(){ int x=vo_dx,y=vo_dy; aspect(&vo_dwidth,&vo_dheight,vo_fs ? A_ZOOM : A_NOZOOM); - if(vo_fs){ + if(!vo_geometry || vo_fs){ if(vo_dwidth <= vo_screenwidth)x = (vo_screenwidth - vo_dwidth)/2; else x=0; if(vo_dheight <= vo_screenheight)y = (vo_screenheight - vo_dheight)/2;