evr/presenter: Add missing break in get_FramesDrawn() (Coverity).
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7462d77f0b
commit
e57e19c236
|
@ -1754,6 +1754,7 @@ static HRESULT WINAPI video_presenter_qualprop_get_FramesDrawn(IQualProp *iface,
|
||||||
case PRESENTER_STATE_PAUSED:
|
case PRESENTER_STATE_PAUSED:
|
||||||
if (frames) *frames = presenter->frame_stats.presented;
|
if (frames) *frames = presenter->frame_stats.presented;
|
||||||
else hr = E_POINTER;
|
else hr = E_POINTER;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
hr = E_NOTIMPL;
|
hr = E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue