forked from len0rd/rockbox
mpeg_set_pitch() was backwards
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2289 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8389b975bb
commit
4ede925c8d
1 changed files with 1 additions and 1 deletions
|
|
@ -1796,7 +1796,7 @@ void mpeg_set_pitch(int percent)
|
|||
unsigned long val;
|
||||
|
||||
/* Calculate the new (bogus) frequency */
|
||||
val = 18432 + (18432*percent/100);
|
||||
val = 18432 - (18432*percent/100);
|
||||
|
||||
mas_writemem(MAS_BANK_D0,0x7f3,&val,1);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue