From fa4c1710d126b2d74cbdd784c59ea435cdc0d1e5 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Mon, 11 Jul 2016 10:58:01 +0200 Subject: DIRECTOR: Lingo: Smoother tests handling --- engines/director/lingo/lingo.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'engines/director/lingo/lingo.cpp') diff --git a/engines/director/lingo/lingo.cpp b/engines/director/lingo/lingo.cpp index fd9d0a56f0..7c7f51ed87 100644 --- a/engines/director/lingo/lingo.cpp +++ b/engines/director/lingo/lingo.cpp @@ -140,7 +140,7 @@ void Lingo::addCode(const char *code, ScriptType type, uint16 id) { begin = end + 1; } - _hadError = false; + _hadError = true; // HACK: This is for preventing test execution parse(begin); } else { parse(code); @@ -148,7 +148,7 @@ void Lingo::addCode(const char *code, ScriptType type, uint16 id) { code1(STOP); } - if (_currentScript->size()) + if (_currentScript->size() && !_hadError) Common::hexdump((byte *)&_currentScript->front(), _currentScript->size() * sizeof(inst)); } @@ -158,6 +158,8 @@ void Lingo::executeScript(ScriptType type, uint16 id) { return; } + debug(2, "Executing script type: %d, id: %d", type, id); + _currentScript = _scripts[type][id]; _pc = 0; _returning = false; @@ -322,7 +324,7 @@ void Lingo::runTests() { stream->read(script, size); - warning("Executing file %s of size %d", m.getName().c_str(), size); + warning("Compiling file %s of size %d, id: %d", m.getName().c_str(), size, counter); _hadError = false; addCode(script, kMovieScript, counter); -- cgit v1.2.3