mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-03 12:31:15 +00:00
Clear frame on full screne video
This commit is contained in:
parent
97cafa43ae
commit
794608d73b
@ -353,6 +353,11 @@ MxResult LegoVideoManager::Tickle()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (m_fullScreenMovie) {
|
else if (m_fullScreenMovie) {
|
||||||
|
DDBLTFX ddbltfx = {};
|
||||||
|
ddbltfx.dwSize = sizeof(DDBLTFX);
|
||||||
|
ddbltfx.dwFillColor = 0xFF000000;
|
||||||
|
m_displaySurface->GetDirectDrawSurface2()->Blt(NULL, NULL, NULL, DDBLT_COLORFILL | DDBLT_WAIT, &ddbltfx);
|
||||||
|
|
||||||
MxPresenter* presenter;
|
MxPresenter* presenter;
|
||||||
MxPresenterListCursor cursor(m_presenters);
|
MxPresenterListCursor cursor(m_presenters);
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user