ALL: sync with ScummVM
This commit is contained in:
parent
2984c92a47
commit
88b93b36dd
62 changed files with 3175 additions and 1313 deletions
|
@ -209,7 +209,9 @@ static Common::Error runGame(const EnginePlugin *plugin, OSystem &system, const
|
|||
Common::StringTokenizer tokenizer(edebuglevels, " ,");
|
||||
while (!tokenizer.empty()) {
|
||||
Common::String token = tokenizer.nextToken();
|
||||
if (!DebugMan.enableDebugChannel(token))
|
||||
if (token.equalsIgnoreCase("all"))
|
||||
DebugMan.enableAllDebugChannels();
|
||||
else if (!DebugMan.enableDebugChannel(token))
|
||||
warning(_("Engine does not support debug level '%s'"), token.c_str());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue