summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_quartz.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libvo/vo_quartz.c b/libvo/vo_quartz.c
index eaea285371..d069cddb85 100644
--- a/libvo/vo_quartz.c
+++ b/libvo/vo_quartz.c
@@ -581,12 +581,12 @@ static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32
aspect_save_orig(width,height);
aspect_save_prescale(d_width,d_height);
aspect_save_screenres(device_width, device_height);
-
- movie_aspect = (float)imgRect.right/(float)imgRect.bottom;
- old_movie_aspect = movie_aspect;
aspect(&d_width,&d_height,A_NOZOOM);
+ movie_aspect = (float)d_width/(float)d_height;
+ old_movie_aspect = movie_aspect;
+
if(image_data)
free(image_data);