aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTravis Howell2008-12-13 04:55:54 +0000
committerTravis Howell2008-12-13 04:55:54 +0000
commit0abcf302c665ca39a0965dde6a73e3e9c57e7053 (patch)
treeb79fb00ecd08f427966c18c00e1794375a4ff97f /engines
parenta1fdbb8695173e240f73e3905989ff749529a6bc (diff)
downloadscummvm-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
Diffstat (limited to 'engines')
-rw-r--r--engines/agos/script_e1.cpp2
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() {