aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/message.cpp
diff options
context:
space:
mode:
authorMartin Kiewitz2010-06-20 18:20:05 +0000
committerMartin Kiewitz2010-06-20 18:20:05 +0000
commit3c6639eb86e8328af84c190878b09c331fe4c1ac (patch)
tree8731a58e4dc5635b37140bfe3564db8abd7f3b4e /engines/sci/engine/message.cpp
parentff785325ad3527394cec06fbd9dc331854e97f30 (diff)
downloadscummvm-rg350-3c6639eb86e8328af84c190878b09c331fe4c1ac.tar.gz
scummvm-rg350-3c6639eb86e8328af84c190878b09c331fe4c1ac.tar.bz2
scummvm-rg350-3c6639eb86e8328af84c190878b09c331fe4c1ac.zip
SCI: implemented kPalVary(reverse) for pharkas, although there is a bug somewhere, not working 100%
svn-id: r50089
Diffstat (limited to 'engines/sci/engine/message.cpp')
-rw-r--r--engines/sci/engine/message.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/message.cpp b/engines/sci/engine/message.cpp
index a4bde9b582..18e60eb521 100644
--- a/engines/sci/engine/message.cpp
+++ b/engines/sci/engine/message.cpp
@@ -380,7 +380,7 @@ void MessageState::outputString(reg_t buf, const Common::String &str) {
if ((unsigned)buffer_r.maxSize >= str.size() + 1) {
_segMan->strcpy(buf, str.c_str());
} else {
- error("Message: buffer %04x:%04x invalid or too small to hold the following text of %i bytes: '%s'", PRINT_REG(buf), str.size() + 1, str.c_str());
+ warning("Message: buffer %04x:%04x invalid or too small to hold the following text of %i bytes: '%s'", PRINT_REG(buf), str.size() + 1, str.c_str());
// Set buffer to empty string if possible
if (buffer_r.maxSize > 0)