Skip to content

Commit

Permalink
DIRECTOR: Better trace for Lingo tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jan 11, 2017
1 parent 9feebaf commit 8fa8b45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/director/lingo/lingo.cpp
Expand Up @@ -457,15 +457,15 @@ void Lingo::runTests() {

stream->read(script, size);

debugC(2, kDebugLingoCompile, "Compiling file %s of size %d, id: %d", fileList[i].c_str(), size, counter);
debug(">> Compiling file %s of size %d, id: %d", fileList[i].c_str(), size, counter);

_hadError = false;
addCode(script, kMovieScript, counter);

if (!_hadError)
executeScript(kMovieScript, counter);
else
debugC(2, kDebugLingoCompile, "Skipping execution");
debug(">> Skipping execution");

free(script);

Expand Down

0 comments on commit 8fa8b45

Please sign in to comment.