mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-02 20:11: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) {
|
||||
DDBLTFX ddbltfx = {};
|
||||
ddbltfx.dwSize = sizeof(DDBLTFX);
|
||||
ddbltfx.dwFillColor = 0xFF000000;
|
||||
m_displaySurface->GetDirectDrawSurface2()->Blt(NULL, NULL, NULL, DDBLT_COLORFILL | DDBLT_WAIT, &ddbltfx);
|
||||
|
||||
MxPresenter* presenter;
|
||||
MxPresenterListCursor cursor(m_presenters);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user