mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-02-08 05:50:07 -05:00
Don't prematurely terminate if doCross1 is not specified
This commit is contained in:
parent
4059767dc4
commit
cc2ce44140
@ -273,14 +273,17 @@ bool EmberGenome(EmberOptions& opt)
|
|||||||
else
|
else
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (doCross1 && ParseEmberFile(parser, opt.Cross1(), embers2))
|
if (doCross1)
|
||||||
{
|
{
|
||||||
if (opt.SubBatchSize() != DEFAULT_SBS)
|
if (ParseEmberFile(parser, opt.Cross1(), embers2))
|
||||||
for (i = 0; i < embers2.size(); i++)
|
{
|
||||||
embers2[i].m_SubBatchSize = opt.SubBatchSize();
|
if (opt.SubBatchSize() != DEFAULT_SBS)
|
||||||
|
for (i = 0; i < embers2.size(); i++)
|
||||||
|
embers2[i].m_SubBatchSize = opt.SubBatchSize();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (opt.CloneAll() != "")
|
if (opt.CloneAll() != "")
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user