From 444fd4898460ef9aa0a04a5379de18acef179068 Mon Sep 17 00:00:00 2001 From: Pieter Hulshoff Date: Wed, 21 Dec 2016 13:40:55 +0100 Subject: [PATCH] Read rom directory if include.txt file is empty or does not exist, even if list.includeMissingItems = true. --- RetroFE/Source/Collection/CollectionInfoBuilder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RetroFE/Source/Collection/CollectionInfoBuilder.cpp b/RetroFE/Source/Collection/CollectionInfoBuilder.cpp index 6227ced..13161ca 100644 --- a/RetroFE/Source/Collection/CollectionInfoBuilder.cpp +++ b/RetroFE/Source/Collection/CollectionInfoBuilder.cpp @@ -319,7 +319,7 @@ bool CollectionInfoBuilder::ImportDirectory(CollectionInfo *info, std::string me } // Read ROM directory if showMissing is false - if (!showMissing) + if (!showMissing || includeFilter.size() == 0) { ImportRomDirectory(path, info, includeFilter, excludeFilter); }