summaryrefslogtreecommitdiffstats
path: root/libvo/aspect.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/aspect.c')
-rw-r--r--libvo/aspect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/aspect.c b/libvo/aspect.c
index 2906f9e33b..8dcd8b6843 100644
--- a/libvo/aspect.c
+++ b/libvo/aspect.c
@@ -79,7 +79,7 @@ void aspect_fit(struct vo *vo, int *srcw, int *srch, int fitw, int fith)
if (tmpw <= fitw) {
*srch = fith;
*srcw = tmpw;
- } else {
+ } else if (*srch > fith) {
mp_tmsg(MSGT_VO, MSGL_WARN,
"[ASPECT] Warning: No suitable new res found!\n");
}