changeset 10918:d2dc9562422e

temporary fix for attilas 10l, until better solution is found
author atmos4
date Sun, 21 Sep 2003 15:34:51 +0000
parents d45870f67728
children dbb3f474c9de
files libvo/aspect.c
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);