From 00be7b54628988d88b1a596d94f3f71f684beb03 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Fri, 8 Sep 2006 04:49:48 +0000 Subject: [PATCH] Reset(). --- stepmania/src/arch/Dialog/DialogDriver_Cocoa.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/Dialog/DialogDriver_Cocoa.cpp b/stepmania/src/arch/Dialog/DialogDriver_Cocoa.cpp index 996c194c3c..ccd6c0f839 100644 --- a/stepmania/src/arch/Dialog/DialogDriver_Cocoa.cpp +++ b/stepmania/src/arch/Dialog/DialogDriver_Cocoa.cpp @@ -15,7 +15,7 @@ static CFOptionFlags ShowAlert( CFOptionFlags flags, const RString& sMessage, CF CFUserNotificationDisplayAlert( 0.0, flags, NULL, NULL, NULL, CFSTR(PRODUCT_FAMILY), text, OK, alt, other, &result ); // Flush all input that's accumulated while the dialog box was up. - INPUTFILTER->FlushInputEvents(); + INPUTFILTER->Reset(); CFRelease( text ); return result; }