From b032b6ebb6312cfb7944b6eab9999fd3d24404bb Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Wed, 20 Dec 2017 21:47:16 -0500 Subject: XEEN: Starting to do archive access more like the original Previously the game wasn't paying much attention to the access of dark.cc vs xeen.cc, which was causing problems when trying to travel to Dark Side. This is the beginnings of a refactoring to more closely work like the original does --- engines/xeen/dialogs_quests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/xeen/dialogs_quests.cpp') diff --git a/engines/xeen/dialogs_quests.cpp b/engines/xeen/dialogs_quests.cpp index 6667bf5262..6e337aab95 100644 --- a/engines/xeen/dialogs_quests.cpp +++ b/engines/xeen/dialogs_quests.cpp @@ -245,7 +245,7 @@ void Quests::addButtons() { } void Quests::loadQuestNotes() { - File f("qnotes.bin", _vm->getGameID() == GType_Clouds ? GAME_ARCHIVE : ALTSIDE_ARCHIVE); + File f("qnotes.bin"); while (f.pos() < f.size()) _questNotes.push_back(f.readString()); f.close(); -- cgit v1.2.3