From 4a72edc93b7db95e82df5a9f4dffe203e2656567 Mon Sep 17 00:00:00 2001 From: Pieter Hulshoff Date: Wed, 21 Dec 2016 14:11:29 +0100 Subject: [PATCH] Fixed merged collection loading where a roms directory does not exist. --- RetroFE/Source/Collection/CollectionInfoBuilder.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/RetroFE/Source/Collection/CollectionInfoBuilder.cpp b/RetroFE/Source/Collection/CollectionInfoBuilder.cpp index 13161ca..444c2b6 100644 --- a/RetroFE/Source/Collection/CollectionInfoBuilder.cpp +++ b/RetroFE/Source/Collection/CollectionInfoBuilder.cpp @@ -292,6 +292,7 @@ bool CollectionInfoBuilder::ImportDirectory(CollectionInfo *info, std::string me std::string mergedFile = Utils::combinePath(Configuration::absolutePath, "collections", mergedCollectionName, info->name + ".sub"); Logger::write(Logger::ZONE_INFO, "CollectionInfoBuilder", "Checking for \"" + mergedFile + "\""); (void)conf_.getProperty("collections." + mergedCollectionName + ".list.includeMissingItems", showMissing); + ImportBasicList(info, mergedFile, includeFilterUnsorted); ImportBasicList(info, mergedFile, includeFilter); }