when parsing time_formula failed, show the error

This commit is contained in:
Zeno Rogue 2022-04-21 13:29:12 +02:00
parent 42cc598dd0
commit f95e3e3f0f
1 changed files with 2 additions and 2 deletions

View File

@ -1401,8 +1401,8 @@ EX bool record_animation_of(reaction_t content) {
try {
newticks = ep.iparse();
}
catch(hr_parse_exception&) {
println(hlog, "warning: failed to parse time_formula");
catch(hr_parse_exception& e) {
println(hlog, "warning: failed to parse time_formula, ", e.s);
}
}
cmode = (env_shmup ? sm::NORMAL : 0);