summaryrefslogtreecommitdiffstats
path: root/command.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-25 16:15:46 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-25 16:15:46 +0000
commit2c57acb2797afc58b76770a0c984fc3a24baa697 (patch)
treeda9e3a78886e833d5b1cec8b83a3919e319e5eaf /command.c
parent11dbdc22dbe55792fb7467419aca6ada3e9d5a86 (diff)
downloadmpv-2c57acb2797afc58b76770a0c984fc3a24baa697.tar.bz2
mpv-2c57acb2797afc58b76770a0c984fc3a24baa697.tar.xz
Extract a poor int declaration from within the uncouth grip of an if statement
where it lay stranded in violation of both syntax and decency. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24183 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'command.c')
-rw-r--r--command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/command.c b/command.c
index 7db6894360..5d42c606e0 100644
--- a/command.c
+++ b/command.c
@@ -2744,8 +2744,8 @@ int run_command(MPContext * mpctx, mp_cmd_t * cmd)
rescale_input_coordinates(pointer_x, pointer_y, &dx, &dy);
#ifdef USE_DVDNAV
if (mpctx->stream->type == STREAMTYPE_DVDNAV
- int button = -1;
&& dx > 0.0 && dy > 0.0) {
+ int button = -1;
pointer_x = (int) (dx * (double) sh_video->disp_w);
pointer_y = (int) (dy * (double) sh_video->disp_h);
mp_dvdnav_update_mouse_pos(mpctx->stream,