quartz: Small readability fix.

Signed-off-by: Miklós Máté <mtmkls@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Miklós Máté 2017-06-11 00:22:58 +02:00 committed by Alexandre Julliard
parent a0af1eba27
commit bf9eaac544
1 changed files with 1 additions and 1 deletions

View File

@ -383,7 +383,7 @@ static HRESULT WINAPI VMR9_CheckMediaType(BaseRenderer *iface, const AM_MEDIA_TY
ERR("Format type %s not supported\n", debugstr_guid(&pmt->formattype)); ERR("Format type %s not supported\n", debugstr_guid(&pmt->formattype));
return S_FALSE; return S_FALSE;
} }
if (This->bmiheader.biCompression) if (This->bmiheader.biCompression != BI_RGB)
return S_FALSE; return S_FALSE;
return S_OK; return S_OK;
} }