mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 13:04:56 +00:00
Windows build fixes
This commit is contained in:
@@ -167,7 +167,7 @@ public:
|
||||
int run()
|
||||
{
|
||||
hecl::MultiProgressPrinter printer(true);
|
||||
hecl::ClientProcess cp(&printer, m_info.verbosityLevel);
|
||||
hecl::ClientProcess cp(&printer);
|
||||
for (int i=0 ; i<m_spec->m_numCookPasses ; ++i)
|
||||
for (const hecl::ProjectPath& path : m_selectedItems)
|
||||
m_useProj->cookPath(path, printer, m_recursive, m_info.force, m_fast, m_spec, &cp, i);
|
||||
|
||||
@@ -201,7 +201,7 @@ public:
|
||||
if (continuePrompt())
|
||||
{
|
||||
hecl::MultiProgressPrinter printer(true);
|
||||
hecl::ClientProcess cp(&printer, m_info.verbosityLevel);
|
||||
hecl::ClientProcess cp(&printer);
|
||||
for (const hecl::ProjectPath& path : m_selectedItems)
|
||||
{
|
||||
if (!m_useProj->packagePath(path, printer, m_fast, m_spec, &cp))
|
||||
|
||||
@@ -75,9 +75,6 @@ static void SIGINTHandler(int sig)
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/* SIGWINCH should do nothing */
|
||||
static void SIGWINCHHandler(int sig) {}
|
||||
|
||||
static logvisor::Module AthenaLog("Athena");
|
||||
static void AthenaExc(athena::error::Level level, const char* file,
|
||||
const char*, int line, const char* fmt, ...)
|
||||
@@ -94,6 +91,8 @@ hecl::SystemString ExeDir;
|
||||
#if _WIN32
|
||||
int wmain(int argc, const wchar_t** argv)
|
||||
#else
|
||||
/* SIGWINCH should do nothing */
|
||||
static void SIGWINCHHandler(int sig) {}
|
||||
int main(int argc, const char** argv)
|
||||
#endif
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user