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
This commit is contained in:
Torbjörn Andersson 2008-10-12 22:14:30 +00:00
parent 19b6289688
commit 4cd3adb690

View File

@ -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;