remove all fb->blit() calls

TODO: check if plugins etc. need extra treatment
This commit is contained in:
Stefan Seyfried
2013-09-28 13:01:03 +02:00
parent 116aba09b0
commit c68ffa2155
39 changed files with 6 additions and 147 deletions

View File

@@ -519,7 +519,6 @@ bool CMsgBox::hide(void)
// delete window
// delete m_pcWindow;
m_pcWindow->paintBackgroundBoxRel(m_cBoxFrame.iX, m_cBoxFrame.iY, m_cBoxFrame.iWidth, m_cBoxFrame.iHeight);
m_pcWindow->blit();
m_pcWindow = NULL;
return (true);
}
@@ -646,7 +645,6 @@ int CMsgBox::exec( int timeout, int returnDefaultOnTimeout)
// show message box
paint();
m_pcWindow->blit();
if (m_pcWindow == NULL)
{
return res; /* out of memory */
@@ -726,7 +724,7 @@ int CMsgBox::exec( int timeout, int returnDefaultOnTimeout)
res = menu_return::RETURN_EXIT_ALL;
loop = false;
}
m_pcWindow->blit();
}
hide();