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

GX shader cook fixes; Resource cook passes

This commit is contained in:
Jack Andersen
2018-04-01 18:26:21 -10:00
parent c9f61eb9da
commit 94988eb9e5
7 changed files with 94 additions and 28 deletions

View File

@@ -195,7 +195,11 @@ void MultiProgressPrinter::DoPrint()
}
}
if (m_mainIndeterminate)
if (m_mainIndeterminate
#ifndef _WIN32
&& m_termInfo.xtermColor
#endif
)
{
DrawIndeterminateBar();
hecl::Printf(_S("\n"));
@@ -248,7 +252,11 @@ void MultiProgressPrinter::DoPrint()
}
m_dirty = false;
}
else if (m_mainIndeterminate)
else if (m_mainIndeterminate
#ifndef _WIN32
&& m_termInfo.xtermColor
#endif
)
{
m_termInfo.width = (hecl::GuiMode ? 120 : std::max(80, hecl::ConsoleWidth()));
MoveCursorUp(m_curProgLines);