diff options
author | Henrik Backe <henrik@backe.eu> | 2004-09-21 20:10:37 +0000 |
---|---|---|
committer | Henrik Backe <henrik@backe.eu> | 2004-09-21 20:10:37 +0000 |
commit | 06c99f681dea5be5384f6331b1a4273f9b601de2 (patch) | |
tree | adaf88e4f0d058a7cdd92d2d6ed434e3de6f2245 /apps | |
parent | 5dfc1d06491293121ef4ea5a3dc0f54b1d0bd956 (diff) |
Fixed broken delete file/directory confirmation in onplay
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5101 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 41e8d2d192..8be8903c84 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; } |