Skip to content

Commit

Permalink
fix v2 detection
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitalita committed Dec 12, 2022
1 parent 935e13c commit a89c1c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utility/gdre_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ bool GDRESettings::check_if_dir_is_v3() {

bool GDRESettings::check_if_dir_is_v2() {
// these are files that will only show up in version 2
static const Vector<String> wildcards = { "*.converted.*", "*.tex", "*.smp" };
static const Vector<String> wildcards = { "*.converted.*", "*.tex" };
if (get_file_list(wildcards).size() > 0) {
return true;
} else {
Expand Down

0 comments on commit a89c1c4

Please sign in to comment.