diff options
author | Henrik Backe <henrik@backe.eu> | 2004-10-06 19:29:24 +0000 |
---|---|---|
committer | Henrik Backe <henrik@backe.eu> | 2004-10-06 19:29:24 +0000 |
commit | af512abe5eb6c2de36236a17dbf6fd8a1edd715c (patch) | |
tree | fa657424f8b4c125bec41d68318dde65bca3414e /apps | |
parent | b41cd24bdacf26c9cfd290d7314a5c60d27ef113 (diff) |
Fixed delete confirmation dialouge in onplay (again)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5191 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/onplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/onplay.c b/apps/onplay.c index 8be8903c84..41e8d2d192 100644 --- a/apps/onplay.c +++ b/apps/onplay.c @@ -329,7 +329,7 @@ static bool delete_handler(bool is_dir) default: /* ignore button releases */ - if ((btn & BUTTON_REL)) + if (!(btn & BUTTON_REL)) exit = true; break; } |