Browse Source

Pre-warm the regex engine for configure deck.

Steve Thielemann 3 years ago
parent
commit
c5cf228cda
1 changed files with 3 additions and 0 deletions
  1. 3 0
      main.cpp

+ 3 - 0
main.cpp

@@ -53,6 +53,9 @@ int opt_from_string(std::string colorCode) {
 }
 
 int configure(door::Door &door, DBData &db) {
+  // pre-warm the parser
+  find_words(std::string(""));
+
   auto menu = make_config_menu();
   int r = 0;
   bool save_deckcolor = false;