diff options
| author | Torbjörn Andersson | 2008-10-12 22:14:30 +0000 | 
|---|---|---|
| committer | Torbjörn Andersson | 2008-10-12 22:14:30 +0000 | 
| commit | 4cd3adb690cc682e5e1f3f0ba5ced644fc1150bd (patch) | |
| tree | 587758ede3ac8bcdab8575446893fbabce1b7883 | |
| parent | 19b6289688353541297921252e55e6a5c5bc4076 (diff) | |
| download | scummvm-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
| -rw-r--r-- | engines/sword1/animation.cpp | 2 | 
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; | 
