diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2010-01-02 16:03:30 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2010-01-02 16:03:30 +0000 |
| commit | 799a0a5cd4001954d8e0e855af4236e1f7b0898d (patch) | |
| tree | c9d94e6fd588e1cfd2a97729ad05b486f6f30fe5 /apps/plugins/starfield.c | |
| parent | d03768bc14da12f940f01993bb6df1ffd8935fe7 (diff) | |
| download | rockbox-799a0a5cd4001954d8e0e855af4236e1f7b0898d.zip rockbox-799a0a5cd4001954d8e0e855af4236e1f7b0898d.tar.gz rockbox-799a0a5cd4001954d8e0e855af4236e1f7b0898d.tar.bz2 rockbox-799a0a5cd4001954d8e0e855af4236e1f7b0898d.tar.xz | |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/starfield.c b/apps/plugins/starfield.c index 0da3305..01d0acf 100644 --- a/apps/plugins/starfield.c +++ b/apps/plugins/starfield.c @@ -389,7 +389,7 @@ int plugin_main(void) ((CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F))) /* This will make the stars pulse to the music */ - if(pulse==true){ + if(pulse){ /* Get the peaks. ( Borrowed from vu_meter ) */ #if (CONFIG_CODEC == SWCODEC) |