Commit bf9eaac5 authored by Miklós Máté's avatar Miklós Máté Committed by Alexandre Julliard

quartz: Small readability fix.

parent a0af1eba
...@@ -383,7 +383,7 @@ static HRESULT WINAPI VMR9_CheckMediaType(BaseRenderer *iface, const AM_MEDIA_TY ...@@ -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;
} }
......
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