diff --git a/quiz/src/assertions.cpp b/quiz/src/assertions.cpp index b439a3146..5e9b19b29 100644 --- a/quiz/src/assertions.cpp +++ b/quiz/src/assertions.cpp @@ -4,8 +4,6 @@ void quiz_assert(bool condition) { if (!condition) { - // We want to keep what the screen is displaying so we cannot abort - while (1) { - } + abort(); } }