summaryrefslogtreecommitdiffstats
path: root/libvo/vo_gl2.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/vo_gl2.c')
-rw-r--r--libvo/vo_gl2.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libvo/vo_gl2.c b/libvo/vo_gl2.c
index d345fcf7f8..12b5e51c5c 100644
--- a/libvo/vo_gl2.c
+++ b/libvo/vo_gl2.c
@@ -565,9 +565,13 @@ static void drawTextureDisplay ()
static void resize(int x,int y){
printf("[gl2] Resize: %dx%d\n",x,y);
if( vo_fs )
+ {
+ aspect(&x, &y, A_ZOOM);
glViewport( (vo_screenwidth-x)/2, (vo_screenheight-y)/2, x, y);
- else
+ } else {
+ aspect(&x, &y, A_NOZOOM);
glViewport( 0, 0, x, y );
+ }
glMatrixMode(GL_PROJECTION);
glLoadIdentity();