summaryrefslogtreecommitdiff
path: root/apps/plugins/starfield.c
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2010-01-02 16:03:30 +0000
committerBertrik Sikken <bertrik@sikken.nl>2010-01-02 16:03:30 +0000
commit799a0a5cd4001954d8e0e855af4236e1f7b0898d (patch)
treec9d94e6fd588e1cfd2a97729ad05b486f6f30fe5 /apps/plugins/starfield.c
parentd03768bc14da12f940f01993bb6df1ffd8935fe7 (diff)
downloadrockbox-799a0a5cd4001954d8e0e855af4236e1f7b0898d.tar.gz
rockbox-799a0a5cd4001954d8e0e855af4236e1f7b0898d.zip
Simplify some boolean expressions that compare directly against 'true'
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24144 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/starfield.c')
-rw-r--r--apps/plugins/starfield.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/starfield.c b/apps/plugins/starfield.c
index 0da3305a6f..01d0acfb4a 100644
--- a/apps/plugins/starfield.c
+++ b/apps/plugins/starfield.c
@@ -389,7 +389,7 @@ int plugin_main(void)
389 ((CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F))) 389 ((CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)))
390 390
391 /* This will make the stars pulse to the music */ 391 /* This will make the stars pulse to the music */
392 if(pulse==true){ 392 if(pulse){
393 393
394 /* Get the peaks. ( Borrowed from vu_meter ) */ 394 /* Get the peaks. ( Borrowed from vu_meter ) */
395#if (CONFIG_CODEC == SWCODEC) 395#if (CONFIG_CODEC == SWCODEC)