diff options
| author | Rafaël Carré <funman@videolan.org> | 2012-05-06 23:10:19 -0400 |
|---|---|---|
| committer | Rafaël Carré <funman@videolan.org> | 2012-05-06 23:13:34 -0400 |
| commit | 65bb8e4452575164a36fbd503bb3d23f7061b9d1 (patch) | |
| tree | 8f7769fa6cf19cdf568c808e01844482cb9c666c /apps/gui | |
| parent | aaf9a1be494812dd6aedde12ea7b3c2d3305d6b7 (diff) | |
| download | rockbox-65bb8e4452575164a36fbd503bb3d23f7061b9d1.zip rockbox-65bb8e4452575164a36fbd503bb3d23f7061b9d1.tar.gz rockbox-65bb8e4452575164a36fbd503bb3d23f7061b9d1.tar.bz2 rockbox-65bb8e4452575164a36fbd503bb3d23f7061b9d1.tar.xz | |
Remove extraneous parens
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/wps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c index 88918e1..25c97fe 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c @@ -592,7 +592,7 @@ static void play_hop(int direction) #endif return; } - else if ((direction == -1 && elapsed < step)) + else if (direction == -1 && elapsed < step) { elapsed = 0; } |