diff options
author | Travis Howell | 2007-11-18 04:42:40 +0000 |
---|---|---|
committer | Travis Howell | 2007-11-18 04:42:40 +0000 |
commit | 2670862c3311793865400b392664704da61fab4e (patch) | |
tree | 4dd7de9dff30bd834dbbbca4eb5803e95cc9e36c /engines/agos | |
parent | 4ce9b7fa15b28944338be190030649d58b103810 (diff) | |
download | scummvm-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')
-rw-r--r-- | engines/agos/script_e2.cpp | 4 |
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; } |