From 992dbe665a0a6f2f32bb6ddb53727c0fca2c4385 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sat, 10 Sep 2011 21:48:54 -0400 Subject: [PATCH] If we have asserts/failures, may as well be clear. --- src/NoteDataUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NoteDataUtil.cpp b/src/NoteDataUtil.cpp index 070e08b34f..5a2765f98b 100644 --- a/src/NoteDataUtil.cpp +++ b/src/NoteDataUtil.cpp @@ -886,7 +886,7 @@ void NoteDataUtil::CalculateRadarValues( const NoteData &in, float fSongSeconds, case RadarCategory_Rolls: out[rc] = (float) in.GetNumRolls(); break; case RadarCategory_Lifts: out[rc] = (float) in.GetNumLifts(); break; case RadarCategory_Fakes: out[rc] = (float) in.GetNumFakes(); break; - default: ASSERT(0); + default: FAIL_M("Non-existant radar category attempted to be set!"); } } }