JANITORIAL: Remove extra semi-colons.

svn-id: r52489
This commit is contained in:
Torbjörn Andersson 2010-09-02 05:12:07 +00:00
parent 1475f75653
commit 9324a80d93
2 changed files with 2 additions and 2 deletions

View File

@ -295,7 +295,7 @@ bool SciEngine::checkExportBreakpoint(uint16 script, uint16 pubfunct) {
_console->DebugPrintf("Break on script %d, export %d\n", script, pubfunct);
_debugState.debugging = true;
_debugState.breakpointWasHit = true;
return true;;
return true;
}
}
}

View File

@ -1837,7 +1837,7 @@ bool VMDDecoder::readFiles() {
break;
if (_frames[i].parts[j].type == kPartTypeFile) {
File file;;
File file;
file.offset = _stream->pos() + 20;
file.size = _frames[i].parts[j].size;