Skip to content
This repository has been archived by the owner on Mar 29, 2020. It is now read-only.

Commit

Permalink
Fix so Linux version builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Idhrendur committed Jun 26, 2017
1 parent 198311c commit 972242a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Vic2ToHoI4/Source/HOI4World/HoI4World.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,8 @@ double HoI4World::getWorldwideWorkerFactoryRatio(map<string, double> workersInCo
}

int defaultFactories = 1189;
if (Configuration::getHOI4Version() >= HOI4Version("1.4.0"))
HOI4Version onePointFour("1.4.0");
if (Configuration::getHOI4Version() >= onePointFour)
{
defaultFactories = 1201;
}
Expand Down

0 comments on commit 972242a

Please sign in to comment.