diff options
author | Travis Howell | 2008-12-13 04:55:54 +0000 |
---|---|---|
committer | Travis Howell | 2008-12-13 04:55:54 +0000 |
commit | 0abcf302c665ca39a0965dde6a73e3e9c57e7053 (patch) | |
tree | b79fb00ecd08f427966c18c00e1794375a4ff97f | |
parent | a1fdbb8695173e240f73e3905989ff749529a6bc (diff) | |
download | scummvm-rg350-0abcf302c665ca39a0965dde6a73e3e9c57e7053.tar.gz scummvm-rg350-0abcf302c665ca39a0965dde6a73e3e9c57e7053.tar.bz2 scummvm-rg350-0abcf302c665ca39a0965dde6a73e3e9c57e7053.zip |
Fix display of spell status in Elvira 2, caused by newline in oe1_pcName().
svn-id: r35328
-rw-r--r-- | engines/agos/script_e1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agos/script_e1.cpp b/engines/agos/script_e1.cpp index dbb633ff66..53bdb55ef0 100644 --- a/engines/agos/script_e1.cpp +++ b/engines/agos/script_e1.cpp @@ -611,7 +611,7 @@ void AGOSEngine_Elvira1::oe1_pcName() { Item *i = getNextItemPtr(); // TODO: Change first letter to upper case. - showMessageFormat("%s\n", (const byte *)getStringPtrByID(i->itemName)); // Difference + showMessageFormat("%s", (const byte *)getStringPtrByID(i->itemName)); // Difference } void AGOSEngine_Elvira1::oe1_isCalled() { |