diff options
author | Tobia Tesan | 2017-06-21 01:14:18 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2017-07-05 08:35:33 +0200 |
commit | 265b0882f60cf4d46af70c23462be7793973883e (patch) | |
tree | 73182f078ee66c558cce970fbc95cab25b12ef95 /engines | |
parent | 8a6ef727cf45b71647d9905363edc0a4805e4928 (diff) | |
download | scummvm-rg350-265b0882f60cf4d46af70c23462be7793973883e.tar.gz scummvm-rg350-265b0882f60cf4d46af70c23462be7793973883e.tar.bz2 scummvm-rg350-265b0882f60cf4d46af70c23462be7793973883e.zip |
DIRECTOR: Use 1-ary processEvent call to start movie
Perahsp a specialized Lingo::start() would be better for clarity for
this single one?
Diffstat (limited to 'engines')
-rw-r--r-- | engines/director/resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/director/resource.cpp b/engines/director/resource.cpp index da3b1b2fed..5e1d79cf24 100644 --- a/engines/director/resource.cpp +++ b/engines/director/resource.cpp @@ -75,7 +75,7 @@ void DirectorEngine::loadEXE(const Common::String movie) { if (!exeStream) error("Failed to open EXE '%s'", getEXEName().c_str()); - _lingo->processEvent(kEventStart, kMovieScript, 0); + _lingo->processEvent(kEventStart); exeStream->seek(-4, SEEK_END); exeStream->seek(exeStream->readUint32LE()); |