Skip to content

Commit

Permalink
Disable the most annoying calc assert
Browse files Browse the repository at this point in the history
possibly temporary, possibly not
there are other asserts but this one causes the only issues, others are present to verify math basically and this one was possibly speculative anyways since removing it or ignoring it does nothing bad to us
  • Loading branch information
poco0317 committed Mar 6, 2021
1 parent ab2e24b commit 7a87135
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Etterna/MinaCalc/Ulbu.h
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,9 @@ struct TheGreatBazoinkazoinkInTheSky
// don't like having this here
any_ms = ms_from(row_time, last_row_time);

assert(any_ms > 0.F);
// To catch division by 0, not preventing significant issues as-is
// So disabled assert for now
// assert(any_ms > 0.F);

ct = determine_col_type(row_notes, ids);

Expand Down

0 comments on commit 7a87135

Please sign in to comment.