summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
Diffstat (limited to 'libvo')
-rw-r--r--libvo/video_out.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index fd32849753..588a132678 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -330,9 +330,8 @@ int config_video_out(vo_functions_t *vo, uint32_t width, uint32_t height,
panscan_init();
aspect_save_orig(width,height);
aspect_save_prescale(d_width,d_height);
- vo->control(VOCTRL_UPDATE_SCREENINFO, NULL);
- if (vo_screenwidth && vo_screenheight) {
+ if (vo->control(VOCTRL_UPDATE_SCREENINFO, NULL) == VO_TRUE) {
aspect(&d_width,&d_height,A_NOZOOM);
vo_dx = (int)(vo_screenwidth - d_width) / 2;
vo_dy = (int)(vo_screenheight - d_height) / 2;