diff options
| author | Paul Louden <paulthenerd@gmail.com> | 2007-02-18 09:28:26 +0000 |
|---|---|---|
| committer | Paul Louden <paulthenerd@gmail.com> | 2007-02-18 09:28:26 +0000 |
| commit | 5fd4c15e2ab8f72e9a79e2938f3388a6b501294b (patch) | |
| tree | 1d2fe608c1c53c357422f99863bf7b868c9a73e4 /apps/codecs | |
| parent | 4594c05925290309dc643415a09ff7da90d8f8e3 (diff) | |
| download | rockbox-5fd4c15e2ab8f72e9a79e2938f3388a6b501294b.zip rockbox-5fd4c15e2ab8f72e9a79e2938f3388a6b501294b.tar.gz rockbox-5fd4c15e2ab8f72e9a79e2938f3388a6b501294b.tar.bz2 rockbox-5fd4c15e2ab8f72e9a79e2938f3388a6b501294b.tar.xz | |
Fix silly cut an pasting of comments.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12391 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/spc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/codecs/spc.c b/apps/codecs/spc.c index 29b68f4..86b9c0c 100644 --- a/apps/codecs/spc.c +++ b/apps/codecs/spc.c @@ -54,13 +54,13 @@ CODEC_HEADER /* Disable echo processing */ #define SPC_NOECHO 1 #else - /* Cache BRR waves */ - #define SPC_BRRCACHE 0 - - /* Disable gaussian interpolation */ + /* Don't cache BRR waves */ + #define SPC_BRRCACHE 0 + + /* Allow gaussian interpolation */ #define SPC_NOINTERP 0 - - /* Disable echo processing */ + + /* Allow echo processing */ #define SPC_NOECHO 0 #endif |