aboutsummaryrefslogtreecommitdiff
path: root/engines/sword1
diff options
context:
space:
mode:
authorTorbjörn Andersson2008-10-12 22:14:30 +0000
committerTorbjörn Andersson2008-10-12 22:14:30 +0000
commit4cd3adb690cc682e5e1f3f0ba5ced644fc1150bd (patch)
tree587758ede3ac8bcdab8575446893fbabce1b7883 /engines/sword1
parent19b6289688353541297921252e55e6a5c5bc4076 (diff)
downloadscummvm-rg350-4cd3adb690cc682e5e1f3f0ba5ced644fc1150bd.tar.gz
scummvm-rg350-4cd3adb690cc682e5e1f3f0ba5ced644fc1150bd.tar.bz2
scummvm-rg350-4cd3adb690cc682e5e1f3f0ba5ced644fc1150bd.zip
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
Diffstat (limited to 'engines/sword1')
-rw-r--r--engines/sword1/animation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword1/animation.cpp b/engines/sword1/animation.cpp
index 36dbadee40..608274179f 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;