# HG changeset patch # User reimar # Date 1276429098 0 # Node ID b080b729c95866ccf4d49f5e3dbe1eac283120b0 # Parent 0b7792622c88f81fffa821f0a6f2a5c6d56727c7 Indentation fix. diff -r 0b7792622c88 -r b080b729c958 libvo/video_out.c --- a/libvo/video_out.c Sun Jun 13 11:34:14 2010 +0000 +++ b/libvo/video_out.c Sun Jun 13 11:38:18 2010 +0000 @@ -351,16 +351,16 @@ aspect_save_prescale(d_width,d_height); 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; - geometry(&vo_dx, &vo_dy, &d_width, &d_height, - vo_screenwidth, vo_screenheight); - geometry_xy_changed |= xinerama_screen >= 0; - vo_dx += xinerama_x; - vo_dy += xinerama_y; - vo_dwidth = d_width; - vo_dheight = d_height; + aspect(&d_width,&d_height,A_NOZOOM); + vo_dx = (int)(vo_screenwidth - d_width) / 2; + vo_dy = (int)(vo_screenheight - d_height) / 2; + geometry(&vo_dx, &vo_dy, &d_width, &d_height, + vo_screenwidth, vo_screenheight); + geometry_xy_changed |= xinerama_screen >= 0; + vo_dx += xinerama_x; + vo_dy += xinerama_y; + vo_dwidth = d_width; + vo_dheight = d_height; } return vo->config(width, height, d_width, d_height, flags, title, format);