diff options
-rw-r--r-- | scumm/string.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp index 2f983bdbf8..4374548286 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -171,9 +171,13 @@ void Scumm::unkMessage2() if (_string[3].color == 0) _string[3].color = 4; - InfoDialog* dialog = new InfoDialog(_newgui, this, (char*)buf); - runDialog (dialog); - delete dialog; + if (_gameId == GID_MONKEY_VGA) { + InfoDialog* dialog = new InfoDialog(_newgui, this, (char*)buf); + runDialog (dialog); + delete dialog; + } else { + printf("unkMessage2: %s\n", buf); + } _messagePtr = tmp; } |