Remove dishonest spc amplification


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12301 a1c6a512-1295-4272-9138-f99709370657
diff --git a/apps/codecs/spc/Spc_Dsp.h b/apps/codecs/spc/Spc_Dsp.h
index b297630..0cf55de 100644
--- a/apps/codecs/spc/Spc_Dsp.h
+++ b/apps/codecs/spc/Spc_Dsp.h
@@ -487,9 +487,8 @@
     /* (g.flags & 0x40) ? 30 : 14 */
     int const global_muting = ((this->r.g.flags & 0x40) >> 2) + 14; 
     
-    /* scaling to offset quietage */
-    int const global_vol_0 = this->r.g.volume_0 * 3;
-    int const global_vol_1 = this->r.g.volume_1 * 3;
+    int const global_vol_0 = this->r.g.volume_0;
+    int const global_vol_1 = this->r.g.volume_1;
     
     /* each rate divides exactly into 0x7800 without remainder */
     int const env_rate_init = 0x7800;