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

Commit

Permalink
Clean up something weird that happened.
Browse files Browse the repository at this point in the history
  • Loading branch information
Idhrendur committed Dec 18, 2015
1 parent 31d3af2 commit 35894ef
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions Vic2ToHoI3/Source/V2toHOI3Converter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/
// Returns 0 on success or a non-zero failure code on error.
int ConvertV2ToHoI3(const std::string& V2SaveFileName)
{
LOG(LogLevel::Info) << "Converter version 0.8C";
LOG(LogLevel::Info) << "Converter version 0.9";
Object* obj; // generic object

Configuration::getInstance();
Expand Down Expand Up @@ -159,13 +159,6 @@ int ConvertV2ToHoI3(const std::string& V2SaveFileName)
exit(0);
}

string outputFolder = string(curDir) + "\\output\\" + Configuration::getOutputName();
if (WinUtils::doesFolderExist(outputFolder.c_str()))
{
LOG(LogLevel::Error) << "Output folder " << Configuration::getOutputName() << " already exists! Clear the output folder before running again!";
exit(0);
}

LOG(LogLevel::Info) << "* Importing V2 save *";

// Parse V2 Save
Expand Down

0 comments on commit 35894ef

Please sign in to comment.