aboutsummaryrefslogtreecommitdiff
path: root/queen
diff options
context:
space:
mode:
authorDavid Eriksson2003-11-13 12:39:37 +0000
committerDavid Eriksson2003-11-13 12:39:37 +0000
commit892492022f7d9ac31b3daf532ed8f0d5e12d9e54 (patch)
tree91dd8bcd784ca7ba545921bfb9f4c9b6129942cf /queen
parentdf34f99ef921a91672e8ce8b81e611262ce0839f (diff)
downloadscummvm-rg350-892492022f7d9ac31b3daf532ed8f0d5e12d9e54.tar.gz
scummvm-rg350-892492022f7d9ac31b3daf532ed8f0d5e12d9e54.tar.bz2
scummvm-rg350-892492022f7d9ac31b3daf532ed8f0d5e12d9e54.zip
According to the original source code, the journal has a different ID in
the demos, but when actually running the demos I get a banana instead of a journal... so let's use the same ID as in the real game. svn-id: r11285
Diffstat (limited to 'queen')
-rw-r--r--queen/logic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/logic.cpp b/queen/logic.cpp
index d1294ecff0..614d3af050 100644
--- a/queen/logic.cpp
+++ b/queen/logic.cpp
@@ -1930,7 +1930,7 @@ void Logic::inventorySetup() {
_graphics->bankLoad("objects.BBK", 14);
_inventoryItem[0] = ITEM_BAT;
- _inventoryItem[1] = _resource->isDemo() ? ITEM_JOURNAL_DEMO : ITEM_JOURNAL;
+ _inventoryItem[1] = ITEM_JOURNAL;
_inventoryItem[2] = ITEM_NONE;
_inventoryItem[3] = ITEM_NONE;
}