From 4cd3adb690cc682e5e1f3f0ba5ced644fc1150bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B6rn=20Andersson?= Date: Sun, 12 Oct 2008 22:14:30 +0000 Subject: [PATCH] Increased maximum subtitle line length for SimSaw. That code really should be made more robust some day, but until now I don't think anyone actually used it. svn-id: r34787 --- engines/sword1/animation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/sword1/animation.cpp b/engines/sword1/animation.cpp index 36dbadee40a..608274179f5 100644 --- a/engines/sword1/animation.cpp +++ b/engines/sword1/animation.cpp @@ -184,7 +184,7 @@ bool MoviePlayer::load(uint32 id) { if (SwordEngine::_systemVars.showText) { sprintf(fileName, "%s.txt", sequenceList[id]); if (f.open(fileName)) { - char line[120]; + char line[240]; int lineNo = 0; int lastEnd = -1;