X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=pico%2Fsound%2Fsound.c;h=b12afc3c25265e87d201269e0662674da5f6ef87;hb=3f23709ef37c5b3511c1445cbed7b447b56a37e0;hp=ec0e20590f06f27c68a59060523c379fb0c00e30;hpb=33be04ca5fee314271f1959672e22cf94d670ea6;p=picodrive.git diff --git a/pico/sound/sound.c b/pico/sound/sound.c index ec0e205..b12afc3 100644 --- a/pico/sound/sound.c +++ b/pico/sound/sound.c @@ -121,15 +121,6 @@ void PsndRerate(int preserve_state) void *state = NULL; int target_fps = Pico.m.pal ? 50 : 60; - // not all rates are supported in MCD mode due to mp3 decoder limitations - if (PicoAHW & PAHW_MCD) { - if (!(11025-100 <= PsndRate && PsndRate <= 11025+100) && - !(22050-100 <= PsndRate && PsndRate <= 22050+100) && - !(44100-100 <= PsndRate && PsndRate <= 44100+100)) - PsndRate = 22050; - PicoOpt |= POPT_EN_STEREO; // force stereo - } - if (preserve_state) { state = malloc(0x204); if (state == NULL) return;