summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/mpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index ca3ac69692..1b9cd828c2 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -1796,7 +1796,7 @@ void mpeg_set_pitch(int percent)
1796 unsigned long val; 1796 unsigned long val;
1797 1797
1798 /* Calculate the new (bogus) frequency */ 1798 /* Calculate the new (bogus) frequency */
1799 val = 18432 + (18432*percent/100); 1799 val = 18432 - (18432*percent/100);
1800 1800
1801 mas_writemem(MAS_BANK_D0,0x7f3,&val,1); 1801 mas_writemem(MAS_BANK_D0,0x7f3,&val,1);
1802 1802