Mercurial > mplayer.hg
changeset 31126:2fef741f9ecc
Fix return value (it was missing completely).
author | reimar |
---|---|
date | Wed, 19 May 2010 17:55:39 +0000 |
parents | ff79dd5474f8 |
children | aab85e35de52 |
files | libvo/w32_common.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/w32_common.c Wed May 19 17:53:47 2010 +0000 +++ b/libvo/w32_common.c Wed May 19 17:55:39 2010 +0000 @@ -390,7 +390,7 @@ int vo_w32_config(uint32_t width, uint32_t height, uint32_t flags) { // we already have a fully initialized window, so nothing needs to be done if (flags & VOFLAG_HIDDEN) - return; + return 1; // store original size for videomode switching o_dwidth = width; o_dheight = height;