fix dcv1 quest detection

This commit is contained in:
Martin Michelsen
2021-10-25 11:35:08 -07:00
parent 0e1613f304
commit 88f0dca887
+1 -1
View File
@@ -261,7 +261,7 @@ Quest::Quest(const string& bin_filename)
this->name = decode_sjis(header->name);
this->short_description = decode_sjis(header->short_description);
this->long_description = decode_sjis(header->long_description);
this->is_dcv1 = (tokens[1] == "d1.bin");
this->is_dcv1 = (tokens[1] == "d1");
break;
}