From 642c4c55d9830ca4bcf37e219f4b14845e49ecf1 Mon Sep 17 00:00:00 2001 From: emb <> Date: Tue, 10 Mar 2015 23:10:14 -0500 Subject: [PATCH] set default state for list.includeMissingItems to false (to preserve backwards compatibility) --- RetroFE/Source/Collection/CollectionInfoBuilder.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RetroFE/Source/Collection/CollectionInfoBuilder.cpp b/RetroFE/Source/Collection/CollectionInfoBuilder.cpp index 940f6af..134bb5e 100644 --- a/RetroFE/Source/Collection/CollectionInfoBuilder.cpp +++ b/RetroFE/Source/Collection/CollectionInfoBuilder.cpp @@ -114,7 +114,7 @@ bool CollectionInfoBuilder::CreateCollectionDirectory(std::string name) settingsFile << "# Uncomment and edit the following line to use a different ROM path." << std::endl; settingsFile << "#list.path = %BASE_ITEM_PATH%/%ITEM_COLLECTION_NAME%/roms" << std::endl; - settingsFile << "list.includeMissingItems = true" << std::endl; + settingsFile << "list.includeMissingItems = false" << std::endl; settingsFile << "list.extensions = zip" << std::endl; settingsFile << "launcher = mame" << std::endl; settingsFile << "metadata.type = MAME" << std::endl; @@ -237,7 +237,7 @@ bool CollectionInfoBuilder::ImportDirectory(CollectionInfo *info) std::string includeFile = Configuration::GetAbsolutePath() + "/collections/" + info->GetName() + "/include.txt"; std::string excludeFile = Configuration::GetAbsolutePath() + "/collections/" + info->GetName() + "/exclude.txt"; std::string launcher; - bool showMissing = true; + bool showMissing = false; (void)Conf.GetProperty("collections." + info->GetName() + ".launcher", launcher); (void)Conf.GetProperty("collections." + info->GetName() + ".list.includeMissingItems", showMissing);