From 4b66853e38f38683121cc27249a2022e3572c0a6 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Tue, 8 Feb 2011 02:13:31 -0600 Subject: [PATCH] small nitpick --- src/ScreenSelectMusic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ScreenSelectMusic.cpp b/src/ScreenSelectMusic.cpp index d5a2c15a10..2501f52915 100644 --- a/src/ScreenSelectMusic.cpp +++ b/src/ScreenSelectMusic.cpp @@ -392,7 +392,7 @@ void ScreenSelectMusic::Input( const InputEventPlus &input ) wchar_t c = INPUTMAN->DeviceInputToChar(input.DeviceI,false); MakeUpper( &c, 1 ); - if ( bHoldingCtrl && ( c >= 'A' ) && ( c <= 'Z' ) ) + if( bHoldingCtrl && ( c >= 'A' ) && ( c <= 'Z' ) ) { // Only allow changing the sort order if the wheel is not locked // and we're not in course mode. -aj