Remove all uses of ERR_EXPLAIN macros.

This commit is contained in:
Marcel Admiraal 2019-11-11 10:24:04 +01:00
parent b7fdac60f1
commit d18b2e599d
7 changed files with 17 additions and 34 deletions

View file

@ -117,8 +117,7 @@ void GDScriptWorkspace::reload_all_workspace_scripts() {
if (S) {
err_msg += "\n" + S->get()->get_error();
}
ERR_EXPLAIN(err_msg);
ERR_CONTINUE(err != OK);
ERR_CONTINUE_MSG(err != OK, err_msg);
}
}
}