[MPlayer-cvslog] r31183 - trunk/libvo/w32_common.c

reimar subversion at mplayerhq.hu
Wed May 19 19:55:39 CEST 2010


Author: reimar
Date: Wed May 19 19:55:39 2010
New Revision: 31183

Log:
Fix return value (it was missing completely).

Modified:
   trunk/libvo/w32_common.c

Modified: trunk/libvo/w32_common.c
==============================================================================
--- trunk/libvo/w32_common.c	Wed May 19 19:53:47 2010	(r31182)
+++ trunk/libvo/w32_common.c	Wed May 19 19:55:39 2010	(r31183)
@@ -390,7 +390,7 @@ static int createRenderingContext(void) 
 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;


More information about the MPlayer-cvslog mailing list