diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2009-02-05 02:47:15 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2009-02-05 02:47:15 +0000 |
| commit | 6db3aace5931e722b7a68b2ec1646fa49c077688 (patch) | |
| tree | 4f81208bd082ed957845a5605fffb15c48ec35a0 /apps/plugins | |
| parent | dd137301121b4e45d3b2e28ba756c22f3212cbfa (diff) | |
| download | rockbox-6db3aace5931e722b7a68b2ec1646fa49c077688.zip rockbox-6db3aace5931e722b7a68b2ec1646fa49c077688.tar.gz rockbox-6db3aace5931e722b7a68b2ec1646fa49c077688.tar.bz2 rockbox-6db3aace5931e722b7a68b2ec1646fa49c077688.tar.xz | |
Fix a wrong check in lamp, spotted by DerPapst
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19925 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/lamp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lamp.c b/apps/plugins/lamp.c index 9a91a15..af25d0a 100644 --- a/apps/plugins/lamp.c +++ b/apps/plugins/lamp.c @@ -201,7 +201,7 @@ enum plugin_status plugin_start(const void* parameter) /* eat these... */ break; default: - if (!IS_SYSEVENT(button)) + if (IS_SYSEVENT(button)) quit = true; } } while (!quit); |