Tweak word separators for ISDCF name guessing game.
authorCarl Hetherington <cth@carlh.net>
Tue, 4 Aug 2015 21:11:10 +0000 (22:11 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 4 Aug 2015 21:11:10 +0000 (22:11 +0100)
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;