[MPlayer-cvslog] r20410 - trunk/libvo/vo_directx.c

diego subversion at mplayerhq.hu
Mon Oct 23 13:26:40 CEST 2006


Author: diego
Date: Mon Oct 23 13:26:40 2006
New Revision: 20410

Modified:
   trunk/libvo/vo_directx.c

Log:
Remove a declaration-after-statement warning.
patch by Zuxy Meng, zuxy.meng gmail com


Modified: trunk/libvo/vo_directx.c
==============================================================================
--- trunk/libvo/vo_directx.c	(original)
+++ trunk/libvo/vo_directx.c	Mon Oct 23 13:26:40 2006
@@ -1015,9 +1015,10 @@
 		}
         case WM_MOUSEWHEEL:
 		{
+			int x;
 			if (vo_nomouse_input)
 				break;
-			int x = GET_WHEEL_DELTA_WPARAM(wParam);
+			x = GET_WHEEL_DELTA_WPARAM(wParam);
 			if (x > 0)
 				mplayer_put_key(MOUSE_BTN3);
 			else



More information about the MPlayer-cvslog mailing list