update windows for list_files fix

This commit is contained in:
2019-03-01 20:59:45 +01:00
parent 9f1ac3730f
commit 0be47c7fb6

View File

@@ -765,7 +765,7 @@ void App::rec_start()
update_rec_frames();
rec_thread = std::thread(&App::rec_loop, this);
#else
rec_count = Asset::list_files(rec_path, false, ".*\\.jpg").size();
rec_count = Asset::list_files(rec_path, ".*\\.jpg").size();
update_rec_frames();
rec_thread = std::thread(&App::rec_loop, this);
#endif