Fixed invalid note type trace to use correct escape sequence.

This commit is contained in:
Kyzentun
2014-07-31 11:25:05 -06:00
parent 48425fa998
commit 18b2d73bb1
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ void TimingWindowSecondsInit( size_t /*TimingWindow*/ i, RString &sNameOut, floa
switch( i )
{
default:
FAIL_M(ssprintf("Invalid timing window: %i", i));
FAIL_M(ssprintf("Invalid timing window: %i", static_cast<int>(i)));
case TW_W1: defaultValueOut = 0.0225f; break;
case TW_W2: defaultValueOut = 0.045f; break;
case TW_W3: defaultValueOut = 0.090f; break;