Tweak word separators for ISDCF name guessing game.
[dcpomatic.git] / src / lib / film.cc
index 405d8cc9bcbb09cf9a89f1774582fd7a010c2a74..3e02ca4e200128c131f6f395d9a100efd6ff91ad 100644 (file)
@@ -473,7 +473,7 @@ Film::isdcf_name (bool if_created_now) const
 
        /* Split the raw name up into words */
        vector<string> words;
-       split (words, raw_name, is_any_of (" "));
+       split (words, raw_name, is_any_of (" _-"));
 
        string fixed_name;