X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=pico%2Fsound%2Fsound.c;fp=pico%2Fsound%2Fsound.c;h=b12afc3c25265e87d201269e0662674da5f6ef87;hb=5ad7000693ff868383277f7ba4da3567ccbeed04;hp=ec0e20590f06f27c68a59060523c379fb0c00e30;hpb=31f944ea8ceee82ec8b1451aa86b8d4a9d07367e;p=picodrive.git diff --git a/pico/sound/sound.c b/pico/sound/sound.c index ec0e2059..b12afc3c 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;