From 88f0dca8872d57db66f12e065932307129ec8401 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Mon, 25 Oct 2021 11:35:08 -0700 Subject: [PATCH] fix dcv1 quest detection --- Quest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quest.cc b/Quest.cc index 196b154a..1ad8b471 100644 --- a/Quest.cc +++ b/Quest.cc @@ -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; }