From 7a87135979cfc5cf2902b095108581c7c7fc8b25 Mon Sep 17 00:00:00 2001 From: Barinade Date: Sat, 6 Mar 2021 17:31:18 -0600 Subject: [PATCH] Disable the most annoying calc assert 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 --- src/Etterna/MinaCalc/Ulbu.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Etterna/MinaCalc/Ulbu.h b/src/Etterna/MinaCalc/Ulbu.h index ee517dbf9b..476f5711ab 100644 --- a/src/Etterna/MinaCalc/Ulbu.h +++ b/src/Etterna/MinaCalc/Ulbu.h @@ -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);