diff options
author | Travis Howell | 2003-11-18 04:05:06 +0000 |
---|---|---|
committer | Travis Howell | 2003-11-18 04:05:06 +0000 |
commit | 5589cdc10cc4389ea010b1362f51b6b907bc9ded (patch) | |
tree | 42cd294d8d8badaced1c8a1552d20b4b642d9818 | |
parent | 5edd70fe3e8b36c50b63495044f485c924b17ef0 (diff) | |
download | scummvm-rg350-5589cdc10cc4389ea010b1362f51b6b907bc9ded.tar.gz scummvm-rg350-5589cdc10cc4389ea010b1362f51b6b907bc9ded.tar.bz2 scummvm-rg350-5589cdc10cc4389ea010b1362f51b6b907bc9ded.zip |
Fix object names in dig demo
svn-id: r11340
-rw-r--r-- | scumm/script_v6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index fdc1401239..dd14ddfb05 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -2498,7 +2498,7 @@ void ScummEngine_v6::o6_kernelSetFunctions() { _messagePtr = getStringAddressVar(VAR_STRING2DRAW); message = _msgPtrToAdd = buf_input; addMessageToStack(_messagePtr); - if (_gameId == GID_DIG) { + if ((_gameId == GID_DIG) && !(_features & GF_DEMO)) { byte buf_trans[300]; char *t_ptr = (char *)buf_input; buf_output[0] = 0; |