diff options
author | Travis Howell | 2007-07-02 00:22:03 +0000 |
---|---|---|
committer | Travis Howell | 2007-07-02 00:22:03 +0000 |
commit | 24b09cdc087d4464186c54ed97a0dd7099431565 (patch) | |
tree | f99157b3d102f2a5e5a3d0a12770f605f0798041 | |
parent | 3ef882041b5029a0de253af8332482f7f2ddb21c (diff) | |
download | scummvm-rg350-24b09cdc087d4464186c54ed97a0dd7099431565.tar.gz scummvm-rg350-24b09cdc087d4464186c54ed97a0dd7099431565.tar.bz2 scummvm-rg350-24b09cdc087d4464186c54ed97a0dd7099431565.zip |
Use warning for that last work around.
svn-id: r27845
-rw-r--r-- | engines/agos/script_e2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agos/script_e2.cpp b/engines/agos/script_e2.cpp index 7a6c6327aa..77df3feecb 100644 --- a/engines/agos/script_e2.cpp +++ b/engines/agos/script_e2.cpp @@ -656,7 +656,7 @@ void AGOSEngine_Elvira2::oe2_isAdjNoun() { if (getGameType() == GType_ELVIRA2) { // WORKAROUND: A NULL item can occur when interacting with Wine Bottles if (item == NULL) { - printf("Please report where exactly this occurs in Elvira 2.\n"); + warning("Please report where exactly this occurs in Elvira 2"); setScriptCondition(false); return; } |