mirror of https://github.com/AxioDL/metaforce.git
libBoo update and windows fixes
This commit is contained in:
parent
c0d89d3e1e
commit
b4725c7d2e
|
@ -29,7 +29,7 @@ public:
|
||||||
{
|
{
|
||||||
if (arg.empty())
|
if (arg.empty())
|
||||||
continue;
|
continue;
|
||||||
else if (!arg.compare("--fast"))
|
else if (!arg.compare(_S("--fast")))
|
||||||
{
|
{
|
||||||
m_fast = true;
|
m_fast = true;
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit df72fca65d3a04a1b28957823e6db956ec68ecff
|
Subproject commit 6d3b8d319811e98105eb4d3d0948b8c25d8ef61c
|
|
@ -382,7 +382,7 @@ static void VisitFile(const ProjectPath& path, bool force, bool fast,
|
||||||
{
|
{
|
||||||
ProjectPath cooked = path.getCookedPath(*spec.first);
|
ProjectPath cooked = path.getCookedPath(*spec.first);
|
||||||
if (fast)
|
if (fast)
|
||||||
cooked = cooked.getWithExtension(".fast");
|
cooked = cooked.getWithExtension(_S(".fast"));
|
||||||
if (force || cooked.getPathType() == ProjectPath::PT_NONE ||
|
if (force || cooked.getPathType() == ProjectPath::PT_NONE ||
|
||||||
path.getModtime() > cooked.getModtime())
|
path.getModtime() > cooked.getModtime())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue