aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/script_e2.cpp
diff options
context:
space:
mode:
authorTravis Howell2007-11-18 04:42:40 +0000
committerTravis Howell2007-11-18 04:42:40 +0000
commit2670862c3311793865400b392664704da61fab4e (patch)
tree4dd7de9dff30bd834dbbbca4eb5803e95cc9e36c /engines/agos/script_e2.cpp
parent4ce9b7fa15b28944338be190030649d58b103810 (diff)
downloadscummvm-rg350-2670862c3311793865400b392664704da61fab4e.tar.gz
scummvm-rg350-2670862c3311793865400b392664704da61fab4e.tar.bz2
scummvm-rg350-2670862c3311793865400b392664704da61fab4e.zip
Update comment for workaround for bug #1745996.
svn-id: r29545
Diffstat (limited to 'engines/agos/script_e2.cpp')
-rw-r--r--engines/agos/script_e2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agos/script_e2.cpp b/engines/agos/script_e2.cpp
index 53f9833b06..a8f5e35547 100644
--- a/engines/agos/script_e2.cpp
+++ b/engines/agos/script_e2.cpp
@@ -654,9 +654,9 @@ void AGOSEngine_Elvira2::oe2_isAdjNoun() {
int16 a = getNextWord(), b = getNextWord();
if (getGameType() == GType_ELVIRA2) {
- // WORKAROUND: A NULL item can occur when interacting with Wine Bottles
+ // WORKAROUND bug #1745996: A NULL item can occur when
+ // interacting with items in the dinning room
if (item == NULL) {
- warning("Please report where exactly this occurs in Elvira 2");
setScriptCondition(false);
return;
}