2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 22:27:43 +00:00

Update submodules

This commit is contained in:
Jack Andersen
2016-01-14 17:38:03 -10:00
parent c826fc58ab
commit 2053734e9e
4 changed files with 65 additions and 3 deletions

View File

@@ -35,12 +35,20 @@ SplashScreen::SplashScreen(ViewManager& vm, Specter::ViewResources& res)
m_extractString(m_vm.translateOr("extract_game", "Extract Game")),
m_extractProjBind(*this)
{
m_openProjBind.m_openRecentMenuRoot.m_text = vm.translateOr("recent_projects", "Recent Projects");
m_textColorClear[3] = 0.0;
commitResources(res);
}
void SplashScreen::think()
{
if (phase() == Phase::Done)
{
if (m_fileBrowser.m_view)
m_fileBrowser.m_view.reset();
return;
}
ModalWindow::think();
if (m_fileBrowser.m_view)
m_fileBrowser.m_view->think();
@@ -245,6 +253,8 @@ void SplashScreen::resized(const boo::SWindowRect& root, const boo::SWindowRect&
void SplashScreen::draw(boo::IGraphicsCommandQueue* gfxQ)
{
if (phase() == Phase::Done)
return;
ModalWindow::draw(gfxQ);
if (m_title)