# HG changeset patch # User atmos4 # Date 1064158491 0 # Node ID d2dc9562422ebd5ae80c18f825e7a8fcd97373ac # Parent d45870f67728bfbe2d6c25074d0054a1bab0240a temporary fix for attilas 10l, until better solution is found diff -r d45870f67728 -r d2dc9562422e libvo/aspect.c --- a/libvo/aspect.c Sun Sep 21 14:21:43 2003 +0000 +++ b/libvo/aspect.c Sun Sep 21 15:34:51 2003 +0000 @@ -60,7 +60,12 @@ void aspect(int *srcw, int *srch, int zoom){ int tmpw; - if(movie_aspect == 0) return; // the user doesnt want to fix aspect + if(!zoom && movie_aspect == 0) { +#ifdef ASPECT_DEBUG + printf("aspect(0) no aspect forced!\n"); +#endif + return; // the user doesnt want to fix aspect + } #ifdef ASPECT_DEBUG printf("aspect(0) fitin: %dx%d zoom: %d screenaspect: %.2f\n",aspdat.scrw,aspdat.scrh, zoom,monitor_aspect);