Commit 1debd88c authored by William Waghorn's avatar William Waghorn Committed by Alexandre Julliard

imaadp32: Refuse unknown destination format.

ADPCM_FormatSuggest must report NOTPOSSIBLE if the destination format is not supported.
parent 461a428f
......@@ -697,8 +697,7 @@ static LRESULT ADPCM_FormatSuggest(PACMDRVFORMATSUGGEST adfs)
if (ADPCM_GetFormatIndex(adfs->pwfxDst) == 0xFFFFFFFF) return ACMERR_NOTPOSSIBLE;
break;
default:
FIXME("\n");
break;
return ACMERR_NOTPOSSIBLE;
}
return MMSYSERR_NOERROR;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment