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 | |
parent | dd137301121b4e45d3b2e28ba756c22f3212cbfa (diff) | |
download | rockbox-6db3aace5931e722b7a68b2ec1646fa49c077688.tar.gz rockbox-6db3aace5931e722b7a68b2ec1646fa49c077688.zip |
Fix a wrong check in lamp, spotted by DerPapst
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19925 a1c6a512-1295-4272-9138-f99709370657
-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 9a91a15e66..af25d0a944 100644 --- a/apps/plugins/lamp.c +++ b/apps/plugins/lamp.c | |||
@@ -201,7 +201,7 @@ enum plugin_status plugin_start(const void* parameter) | |||
201 | /* eat these... */ | 201 | /* eat these... */ |
202 | break; | 202 | break; |
203 | default: | 203 | default: |
204 | if (!IS_SYSEVENT(button)) | 204 | if (IS_SYSEVENT(button)) |
205 | quit = true; | 205 | quit = true; |
206 | } | 206 | } |
207 | } while (!quit); | 207 | } while (!quit); |